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 guys, How can I pass parm when data not exists in Hold file. Here is what I have: TABLE FILE TABLE1 PRINT COL1 WHERE USER_ID EQ 'USER1'; ON TABLE HOLD AS A1 FORMAT ALPHA END -RUN -READ A1 &COL1.A20 END
-RUN -SET &HLINK = IF &RECORDS NE 0 AND &COL1 NE '' THEN 'Drill-Down report with &COL1 view' ELSE '';
It works when &RECORDS NE 0 but when &RECORDS EQ 0, then I got the error message as: (FOC295) A VALUE IS MISSING FOR: &COL1
-DEFAULT &COUNTRY = '';
SET HOLDFORMAT=ALPHA
-RUN
TABLE FILE CAR
PRINT COUNTRY
WHERE COUNTRY EQ 'CANADA'
ON TABLE HOLD AS H001
END
-RUN
-READ H001 &COUNTRY.A10.
-TYPE COUNTRY: &COUNTRY
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
-DEFAULT &COUNTRY = '';
-DEFAULT &HLINK = '';
SET HOLDFORMAT=ALPHA
-RUN
TABLE FILE CAR
PRINT COUNTRY
WHERE COUNTRY EQ 'CANADA'
ON TABLE HOLD AS H001
END
-RUN
-READ H001 &COUNTRY.A10.
-RUN
-SET &HLINK =
- IF &RECORDS NE 0 AND '&COUNTRY' NE '' THEN 'FILE FOR: &COUNTRY'
- ELSE IF &RECORDS NE 0 AND '&COUNTRY' EQ '' THEN 'DONE'
- ELSE '';
-RUN
TABLE FILE CAR
BY COUNTRY
ON TABLE FOOTING
"&HLINK.EVAL"
END
-EXIT
I added "ELSE ''" to the -SET statement.
As well, I don't think you need the .EVAL in the FOOTING.
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server