As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
How do you change the default no results message? This is the message that reads:
Your request did not return any output to display. Possible causes: - No data rows matched the specified selection criteria. - Output was directed to a destination such as a file or printer. - An error occurred during the parsing or running of the request.
I want to add something about if you see this message, please send the entire message to IT support for resolution.This message has been edited. Last edited by: Geri,
U can give ur own message, if no rows are retrieved for ur selection as below:
Give the below code at the end of ur report
-RPTEND
-IF &LINES EQ 0 THEN GOTO NODATA;
-ELSE GOTO THEEND;
-NODATA
-SET &ERRMSG1 = 'There is no data retrieved for the selected parameters.';
-*****U can give ur entered I/P parameter bottom *******-
-SET &ERRMSG2 = 'DATE RANGE : ' | &STARTDT | ' to ' | &ENDDT;';
-SET &ERRMSG3 = 'Try again with new set of values';
-GOTO ERRORMSG
-ERRORMSG
-HTMLFORM BEGIN
<HTML>
<BODY>
<P> &ERRMSG1 </P>
<P> &ERRMSG2 </P>
<P> &ERRMSG3 </P>
</BODY>
</HTML>
-HTMLFORM END
-GOTO THEEND
-THEEND
WebFocus Version 7.7.05 Windows, HTML/PDF/EXL2K/AHTML
I prefer to edit the Default message since it is so bold and that is the first thing the user see and frequently all they see at the bottom of the screen. They do not always page down when they see the message. For now, I added a message based on 0 lines as suggested here.
As for the default message, I changed the message (per your suggestion) but the original message still appears. I might need to contact IBI on that issue.