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] Getting an extra character at the beginning of variable using -READ

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[SOLVED] Getting an extra character at the beginning of variable using -READ
 Login/Join
 
Gold member
posted
I'm trying to pass in a value from a table into a variable using -READ for a header

 TABLE FILE METRIC
BY METRIC_NAME
WHERE METRIC_CODE EQ '&METRIC'
ON TABLE HOLD AS HEADER
END
-RUN
-READ HEADER, &HEADER.A50. 


Everything works perfectly, except when I check the value of &HEADER, a hyphen shows up at the beginning. If I expect 'foo', I instead get '-foo'. Why is this happening, and how would I fix this?

This message has been edited. Last edited by: ccollier,


WebFOCUS 8.2.01M on Windows 10
 
Posts: 54 | Registered: July 30, 2018Report This Post
Platinum Member
posted Hide Post
Hello,

Can you try this.

TABLE FILE CAR
BY CAR
WHERE CAR EQ 'BMW'
ON TABLE HOLD AS HEADER FORMAT ALPHA
END
-RUN
-READ HEADER &VAR_NAME.A11


-TYPE &VAR_NAME
 
Posts: 109 | Registered: February 02, 2016Report This Post
Virtuoso
posted Hide Post
Ccollier

Try -READFILE HEADER

The variable name will be &METRIC_NAME


Thank you for using Focal Point!

Chuck Wolff - Focal Point Moderator
WebFOCUS 7x and 8x, Windows, Linux All output Formats
 
Posts: 2127 | Location: Customer Support | Registered: April 12, 2005Report This Post
Expert
posted Hide Post
If you use -READFILE, you will need to prime the variable so it doesn't get prompted.


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

 
Posts: 6347 | Location: 33°49'23.0"S, 151°11'41.0"E | Registered: October 31, 2006Report This Post
Virtuoso
posted Hide Post
Does METRIC_NAME is a variable field length such as A50V ?

Try with this
TABLE FILE METRIC
BY METRIC_NAME/A50
WHERE METRIC_CODE EQ '&METRIC'
ON TABLE HOLD AS HEADER
END
-RUN
-READ HEADER, &HEADER.A50. 

But as mentioned already, you should better use READFILE

TABLE FILE METRIC
BY METRIC_NAME/A50
WHERE METRIC_CODE EQ '&METRIC'
ON TABLE HOLD AS HEADER
END
-RUN
-READFILE HEADER
-DEFAULTH &METRIC_NAME = ''


WF versions : Prod 8.2.04M gen 33, Dev 8.2.04M gen 33, OS : Windows, DB : MSSQL, Outputs : HTML, Excel, PDF
In Focus since 2007
 
Posts: 2409 | Location: Montreal Area, Qc, CA | Registered: September 25, 2013Report This Post
Gold member
posted Hide Post
As you guy said, using the -READFILE worked properly. Thanks!


WebFOCUS 8.2.01M on Windows 10
 
Posts: 54 | Registered: July 30, 2018Report This Post
Virtuoso
posted Hide Post
Beware of changing the format in the TABLE request. See:
  
TABLE FILE CAR
BY COUNTRY/A20
ON TABLE HOLD
END
?FF HOLD
-RUN
-READFILE HOLD
-TYPE &COUNTRY &COUNTRY.LENGTH

-* Output:
  
 0 NUMBER OF RECORDS IN TABLE=        5  LINES=      5
 FILENAME=  HOLD
 COUNTRY       E01           A20
 COUNTRY       E02           A10
 ENGLAND    10


However:
  
TABLE FILE CAR
BY COUNTRY/A20
ON TABLE SET HOLDLIST PRINTONLY
ON TABLE HOLD
END
?FF HOLD
-RUN
-READFILE HOLD
-TYPE &COUNTRY &COUNTRY.LENGTH
-* output
 0 NUMBER OF RECORDS IN TABLE=        5  LINES=      5
 FILENAME=  HOLD
 COUNTRY       E01           A20
 ENGLAND              20



Daniel
In Focus since 1982
wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF

 
Posts: 1980 | Location: Tel Aviv, Israel | Registered: March 23, 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     [SOLVED] Getting an extra character at the beginning of variable using -READ

Copyright © 1996-2020 Information Builders