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.
Hi ALL, I have a report with 12 pages i.e; pagination kind of report.i have a field name "DName" which is dispalying values '.',i want o change it to blank i,e; ' ',so all i am doing is SET NODATA =' ',bUT WHEN I RUN THE REPORT ONLY PAGE 1 IS DISPALYING CORRECTLY I.E; WITH ' '; so please tell me how to do the same for all the pages os i get the blanks i.e; ' ' for that particular field in all the pages.This message has been edited. Last edited by: Kerry,
7.6.7 windows PDF,EXCEL.
Posts: 160 | Location: Atlanta,GA | Registered: July 16, 2009
Number of pages has nothing to do with the NODATA character so there must be something else going on. Once the SET NODATA=' ' is set, it's valid for the entire report.
The concept of "pages" in HTML isn't really there. Are you using On-Demand paging and seeing this?
Regards,
Darin
In FOCUS since 1991 WF Server: 7.7.04 on Linux and Z/OS, ReportCaster, Self-Service, MRE, Java, Flex Data: DB2/UDB, Adabas, SQL Server Output: HTML,PDF,EXL2K/07, PS, AHTML, Flex WF Client: 77 on Linux w/Tomcat
Posts: 2298 | Location: Salt Lake City, Utah | Registered: February 02, 2007
Hi darin, i used SET NODATA=' ',But some how its displaying correctly in the first page which gets after i run the report,once i navigate from the report output to page 2 or any other page i am getting the missing parameter '. ',which i want o get rid off.
i am using a report with pagination kind i.e; i have links for 1-12 pages in the report output.
i am surprised to see why the "Set Nodata" is being passed to the page which come after i run only,why not to other pages.?
7.6.7 windows PDF,EXCEL.
Posts: 160 | Location: Atlanta,GA | Registered: July 16, 2009
When you say you have links to the pages, what are the links doing? Re-running the report and getting page two? Links to static pages? Still not quite sure what you are doing.
Regards,
Darin
In FOCUS since 1991 WF Server: 7.7.04 on Linux and Z/OS, ReportCaster, Self-Service, MRE, Java, Flex Data: DB2/UDB, Adabas, SQL Server Output: HTML,PDF,EXL2K/07, PS, AHTML, Flex WF Client: 77 on Linux w/Tomcat
Posts: 2298 | Location: Salt Lake City, Utah | Registered: February 02, 2007
Try ON TABLE SET NODATA '' instead of SET NODATA='' I think, only for the first page, fex with SET NODATA command was included. For the consecutive calls that fex might be bypassed.
So try this way,
TABLE FILE CAR
SUM SALES BY COUNTRY ACROSS SEATS
ON TABLE SET NODATA ''
END