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.
Any ideas on the following output from my code, I am baffled...
Thks,
Vipul
TABLE FILE PD_INFO -*PRINT CNT NOPRINT PRINT * WHERE DEBITCREDIT EQ 'C' WHERE BNKACCTKY IN FILE BAIFLTR WHERE BNKACCTKY = 999 IF RECORDLIMIT EQ 1 ON TABLE HOLD AS ERRCREDIT END -* -IF 1 EQ 0 THEN GOTO ERRCREDIT; 0 NUMBER OF RECORDS IN TABLE= 9 LINES= 1
0 HTML FILE SAVED ...
0 NUMBER OF RECORDS IN TABLE= 0 LINES= 0
-IF 0 EQ 0 THEN GOTO ERRCREDIT;This message has been edited. Last edited by: <Mabel>,
yup, you need a -RUN after your fex part. ON TABLE HOLD AS ERRCREDIT END -RUN -IF &LINES EQ 0 GOTO ERRCREDIT; remember, dialog manager commands execute FIRST, before any regular focus commands. The way to force the fex to run before the &LINES is measured is to put a -RUN after the fex. Then your &LINES will execute AFTER, and you'll actually have something to count.
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003
Yes, -RUN is necessary in this case between TABLE (stacked and not executed until -RUN is found) and -TYPE (Dialogue Manager command executes first in this case).