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     Report Caster Parameters

Read-Only Read-Only Topic
Go
Search
Notify
Tools
Report Caster Parameters
 Login/Join
 
Platinum Member
posted
I'm trying to set up my report to pass a date parameter of the SYSTEM_DATE -1


Server Environment: Win2K3 Server WebFOCUS 7.13 Apache Tomcat standalone application server
 
Posts: 188 | Registered: April 14, 2005Report This Post
Expert
posted Hide Post
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, 2003Report This Post
Platinum Member
posted Hide Post
Hi Bethany

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.

-SET &ECHO=ALL;
-DEFAULTS &MYDATE='';
-SET &YESTERDAY=AYMD(&YYMD,-1,'I8');
-SET &MYDATE = IF &MYDATE EQ '' THEN &YESTERDAY ELSE &MYDATE;
-TYPE MYDATE = &MYDATE

When the report is not run from caster, a value is always passed for MYDATE, so that gets used instead of the default of yesterday.

Jodye


WF 8.0.0.5M
 
Posts: 246 | Location: Montreal, QC, Canada | Registered: October 01, 2003Report This Post
Expert
posted Hide Post
That makes sense. Cleaner.


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
Platinum Member
posted Hide Post
Thanks for the suggestion. Anyone know if this could work with a smart date? When the user inputs the date it's sent from the launch page as a YYMD.


Server Environment: Win2K3 Server WebFOCUS 7.13 Apache Tomcat standalone application server
 
Posts: 188 | Registered: April 14, 2005Report This Post
Expert
posted Hide Post
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, 2003Report 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     Report Caster Parameters

Copyright © 1996-2020 Information Builders