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 all, i want to accomplish the following: i have YRMO FIELD which gives me year and month,but i want to add the date also i.e; for eg :if i have 200910 in YRMO field then i got to convert into 20091001,where 01 indicates october1.
please help.......This message has been edited. Last edited by: Kerry,
7.6.7 windows PDF,EXCEL.
Posts: 160 | Location: Atlanta,GA | Registered: July 16, 2009
Swati, in FOCUS just as in pretty much any other language out there a variable can have ONE value at a time unless of course you're dealing with collections (such as arrays or more elaborated structures) which are not fully supported by FOCUS.
If you need to have 2 dates in WebFOCUS, you will need to have 2 different variables each one representing one of the dates you want and you'll write your code to use one or the other depending on business rules that only you know.
-SET &YRMO_A ='200905';
-SET &YRMO_B ='200807';
-SET &CRT_DT = IF (<your_rule_here>) THEN &YRMO_A || '01' ELSE &YRMO_B || '01';
...
Now, if you're relying on the Auto-prompting facility to be able to select a specific date from a drop down list you could attempt something like this:
Personally I would never use such a structure in any Production report but it has its place when it comes to quick and dirty development a/o debugging.
But the bottom line is, only ONE value will be assigned to your variable. In this case it will be the one you pick when actually running the code.