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     Amper Variables in report (2)

Read-Only Read-Only Topic
Go
Search
Notify
Tools
Amper Variables in report (2)
 Login/Join
 
Gold member
posted
The first and second calls to gettok don't give me any errors but when I try to do it within the context of a report I get errors.

My question is this... is there any way to take an amper variable and bring it into a report?

Secondly, if it is more complicated than either of the attempts below... why?



-SET &MY_PARAMETER = '-2-270-';
-SET &DATA1 = GETTOK(&MY_PARAMETER , 7, 1, '-', 2, 'A2');
-SET &DATA1 = GETTOK(&MY_PARAMETER , 7, 2, '-', 3, 'A3');
TABLE FILE CAR
PRINT
COMPUTE DATA1_FROM_AMPER/A2 = &DATA1;
COMPUTE DATA1_FROM_GETTOK/A2 = GETTOK(&MY_PARAMETER , 7, 1, '-', 2, 'A2');
WHERE READLIMIT EQ '2';
END

This message has been edited. Last edited by: <Mabel>,
 
Posts: 77 | Location: Chicago, IL | Registered: May 06, 2004Report This Post
<DocServices>
posted
Hi George,

In Chapter 10 of the Creating Reports With WebFOCUS Language 5.3 (DN4500580.0904) manual, there is an example titled "Creating Parameters By Specifying an Amper Variable." This example can be found in the section titled "Creating Parameters."

Hope this helps,
Jennifer
 
Report This Post
Expert
posted Hide Post
George, when you reference an &var inside ordinary focus code, you need to enclose it in single quotes.
 
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003Report This Post
Guru
posted Hide Post
George, what are the errors you are getting?
 
Posts: 346 | Location: Melbourne Australia | Registered: April 15, 2003Report This Post
Virtuoso
posted Hide Post
This is what you're after:

-SET &MY_PARAMETER = '-2-270-';
-SET &DATA1 = GETTOK( &MY_PARAMETER , 7, 1, ('-'), 2, 'A2');
TABLE FILE CAR
PRINT
COMPUTE DATA1_FROM_AMPER/A2 = '&DATA1';
COMPUTE DATA1_FROM_GETTOK/A2 =
GETTOK('&MY_PARAMETER', 7, 1, ('-'), 2, 'A2');
BY CAR
WHERE RECORDLIMIT EQ '2';
END
You should get:

PAGE 1

CAR DATA1_FROM_AMPER DATA1_FROM_GETTOK

JAGUAR 2 2
JENSEN 2 2

GETTOK appears to skip leading Delimiters; you get the same result with '2-270-', or even '--2-270-'.

This message has been edited. Last edited by: <Mabel>,
 
Posts: 1925 | Location: NYC | In FOCUS since 1983 | Registered: January 11, 2005Report This Post
Gold member
posted Hide Post
Jack Gross thank you very much. Your code worked perfectly.

This will save me a lot of trouble.

Smiler
 
Posts: 77 | Location: Chicago, IL | Registered: May 06, 2004Report 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     Amper Variables in report (2)

Copyright © 1996-2020 Information Builders