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.
Bethany, lookup the AYMD function it adds or subtracts days from &var dates, like -SET &YESTERDAY = AYMD ( &YYMD , -1, 'I8YYMD'); -SET &TOMORROW = AYMD ( &YYMD , 1 , 'I8YYMD'); So, you could have a variable &ADJ as a parm -DEFAULT &ADJ = 0 ; -SET &YESTERDAY = AYMD ( &YYMD , &ADJ * (-1), 'I8YYMD'); So if you wanted to run for last week, then your &ADJ = 7 in your caster parms.
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003
I believe that we do exactly what you are trying to do with this post and your other post. Putting together the answers from Susannah and Francis...
This code will set &MYDATE to yesterday if there is no value for MYDATE passed as a param to the fex. Just make sure that when the report is run from caster, the MYDATE param is empty or not present, that way the default date used is yesterday.
Bethany, you can convert an I8YYMD to a smart date and vice-versa, even if they're in dialog manager form. In the 'Using Functions' manual, there's a whole chapter on dates. very enlightening. you'll get a lot of ideas from it.
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003