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     passing parm on footing when &RECORDS = 0

Read-Only Read-Only Topic
Go
Search
Notify
Tools
passing parm on footing when &RECORDS = 0
 Login/Join
 
Member
posted
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

Anyone knows how to solve this problem?


Thanks,
 
Posts: 28 | Registered: October 26, 2006Report This Post
Expert
posted Hide Post
Default the variable you will read:

-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
 
Posts: 10577 | Location: Toronto, Ontario, Canada | Registered: April 27, 2005Report This Post
Member
posted Hide Post
Francis,

I added
-DEFAULT &COL1= '';

Now I got error message as:
Unknown error occurred. Agent on reporting server EDASERVE may have crashed. Please investigate reporting server log.
 
Posts: 28 | Registered: October 26, 2006Report This Post
Member
posted Hide Post
-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';

-RUN
TABLE FILE CAR
BY COUNTRY
ON TABLE FOOTING
"&HLINK.EVAL"
END
-EXIT

The error message is: (FOC295) A VALUE IS MISSING FOR: &HLINK
 
Posts: 28 | Registered: October 26, 2006Report This Post
Expert
posted Hide Post
-DEFAULT &COUNTRY = ' ';
-DEFAULT &HLINK = ' ';

SET HOLDFORMAT=ALPHA
-RUN

TABLE FILE CAR
PRINT COUNTRY
WHERE COUNTRY EQ 'CANADA'
ON TABLE HOLD AS H001
END
-RUN

-IF &LINES EQ 0 GOTO SKIP_READ;
-READ H001 &COUNTRY.A10.

-***********************
-SET &HLINK = 'File for: ' | &COUNTRY;
-***********************
-SKIP_READ

TABLE FILE CAR
BY COUNTRY
-IF &COUNTRY EQ ' ' GOTO NO_FOOTER;
FOOTING
"&HLINK.EVAL"
-NO_FOOTER
END
-EXIT


Tom Flynn
WebFOCUS 8.1.05 - PROD/QA
DB2 - AS400 - Mainframe
 
Posts: 1972 | Location: Centennial, CO | Registered: January 31, 2006Report This Post
Expert
posted Hide Post
You may do as Tom suggests or do this:

-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
 
Posts: 10577 | Location: Toronto, Ontario, Canada | Registered: April 27, 2005Report This Post
Member
posted Hide Post
Yes, it works.
Thank you both very much!!
 
Posts: 28 | Registered: October 26, 2006Report 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     passing parm on footing when &RECORDS = 0

Copyright © 1996-2020 Information Builders