Focal Point Banner


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.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED] NUMBER OF RECORDS IN TABLE=

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[SOLVED] NUMBER OF RECORDS IN TABLE=
 Login/Join
 
Platinum Member
posted
After a search on the above and wading through most of the 14 pages returned I can't find an answer to the question:

Can I capture the number returned in the message and use it in a report, WITHOUT running another report to count them?

I'm doing the following and would like to create an audit report as the last step. there are 4 files created in the fex.

ON TABLE HOLD AS STUDENT_ACCOUNT FORMAT DFIX DELIMITER ',' HEADER NO

This message has been edited. Last edited by: Rick Man,


Reporting Server 7.6.10
Dev. Studio 7.6.8
Windows NT
Excel, HTML, PDF
 
Posts: 204 | Registered: March 31, 2008Report This Post
Master
posted Hide Post
The following code..
APP PREPENDPATH IBISAMP
-*
TABLE FILE GGSALES
SUM ST BY ST
ON TABLE HOLD AS HOLD1
END
-RUN
-SET &WORK1 = &LINES;
TABLE FILE GGPRODS
PRINT *
ON TABLE HOLD AS HOLD2
END
-RUN
-SET &WORK2 = &LINES;
-SET &TOTLINES = &WORK1 + &WORK2;
TABLE FILE GGSALES
"TOTAL LINES = &TOTLINES"
PRINT ST AS ''
IF ST EQ XX
ON TABLE SET PAGE OFF
ON TABLE SET EMPTYREPORT ON
END
-EXIT  
..Yields..:
TOTAL LINES = 21
..in the browser.




Pilot: WebFOCUS 8.2.06 Test: WebFOCUS 8.1.05M Prod: WebFOCUS 8.1.05M Server: Windows Server 2016/Tomcat Standalone Workstation: Windows 10/IE11+Edge Database: Oracle 12c, Netezza, & MS SQL Server 2019 Output: AHTML/XLSX/HTML/PDF/JSCHART Tools: WFDS, Repository Content, BI Portal Designer & ReportCaster
 
Posts: 822 | Registered: April 23, 2003Report This Post
Platinum Member
posted Hide Post
But lines and records can be different. For Example: 0 NUMBER OF RECORDS IN TABLE= 14586 LINES= 1

But maybe in my case they are. I'm not doing a SUM.


Reporting Server 7.6.10
Dev. Studio 7.6.8
Windows NT
Excel, HTML, PDF
 
Posts: 204 | Registered: March 31, 2008Report This Post
Virtuoso
posted Hide Post
&RECORDS ?
 
Posts: 1903 | Location: San Antonio | Registered: February 28, 2005Report This Post
Master
posted Hide Post
To obtain and deal with the number of records retrieved, instead of the number of output lines, use the WF statistical variable &RECORDS, in place of &LINES:
APP PREPENDPATH IBISAMP
-*
TABLE FILE GGSALES
SUM ST BY ST
ON TABLE HOLD AS HOLD1
END
-RUN
-SET &WORK1 = &RECORDS;
TABLE FILE GGPRODS
PRINT *
ON TABLE HOLD AS HOLD2
END
-RUN
-SET &WORK2 = &RECORDS;
-SET &TOTRECS = &WORK1 + &WORK2;
TABLE FILE GGSALES
"TOTAL RECORDS = &TOTRECS"
PRINT ST AS ''
IF ST EQ XX
ON TABLE SET PAGE OFF
ON TABLE SET EMPTYREPORT ON
END
-EXIT
Yields:
TOTAL RECORDS = 4327




Pilot: WebFOCUS 8.2.06 Test: WebFOCUS 8.1.05M Prod: WebFOCUS 8.1.05M Server: Windows Server 2016/Tomcat Standalone Workstation: Windows 10/IE11+Edge Database: Oracle 12c, Netezza, & MS SQL Server 2019 Output: AHTML/XLSX/HTML/PDF/JSCHART Tools: WFDS, Repository Content, BI Portal Designer & ReportCaster
 
Posts: 822 | Registered: April 23, 2003Report This Post
Platinum Member
posted Hide Post
DUH. Big Grin I did a -? & and the &RECORDS was 1. I knew that wasn't right. I must have had to do a -RUN in there.
Thanks


Reporting Server 7.6.10
Dev. Studio 7.6.8
Windows NT
Excel, HTML, PDF
 
Posts: 204 | Registered: March 31, 2008Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED] NUMBER OF RECORDS IN TABLE=

Copyright © 1996-2020 Information Builders