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     calculation of date = today + 1month - 2 days in Dialog manager

Read-Only Read-Only Topic
Go
Search
Notify
Tools
calculation of date = today + 1month - 2 days in Dialog manager
 Login/Join
 
Member
posted
hello

I went through all the functions to find out how to calculate date/YYMD = today + 1 month - 2 days in Dialog manager.

the AYM function addes months but in YYM format only. I would like to avoid splitting date in YYM and D, calculate + 1 month and after put it together and subtract 2 days.
Is any suggestions? I would appriciate it.

Thank you, Mila


WebFOCUS 7.1
UNIX
 
Posts: 18 | Registered: May 15, 2008Report This Post
Expert
posted Hide Post
Mila,

One way:

 
-SET &NEXT_MO = DATECVT((DATEADD((DATECVT (&YYMD,    'I8YYMD', 'YYMD')),'M',  1)), 'YYMD','I8YYMD');
-SET &MINUS_2 = DATECVT((DATEADD((DATECVT (&NEXT_MO, 'I8YYMD', 'YYMD')),'D', -2)), 'YYMD','I8YYMD');


Other examples will follow...

Tom


Tom Flynn
WebFOCUS 8.1.05 - PROD/QA
DB2 - AS400 - Mainframe
 
Posts: 1972 | Location: Centennial, CO | Registered: January 31, 2006Report This Post
Expert
posted Hide Post
Another way, first determine the number of days in the current month, then subtract 2, then use AYMD:

-SET &ECHO=ALL;

-SET &DT_EOM = 
- DATECVT(( DATEMOV((DATECVT(&YYMD,'I8YYMD','YYMD')),'EOM')), 'YYMD','I8YYMD');


-SET &DAYS1 = EDIT(&DT_EOM,'$$$$$$99');

-SET &DAYS2 = (&DAYS1 - 2) * (-1);

-TYPE &DAYS1 &DAYS2

-SET &DT2 = AYMD(&YYMD, &DAYS2, 'I8YYMD');

-TYPE &YYMD - &DT2


Other examples will follow...


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
Member
posted Hide Post
Hi Mila,

Herewith I have given a pice of code.

Example:

-SET &DAYS=DATECVT((DATEADD((DATECVT(&YYMD,'I8YYMD','YYMD')),'M', + 1 )-2),'YYMD','I8YYMD');
-TYPE &DAYS

Thanks,
Senthil


WebFOCUS version 8.1.05
Windows 10
 
Posts: 15 | Registered: November 28, 2007Report This Post
Expert
posted Hide Post
quote:
-SET &DAYS=DATECVT((DATEADD((DATECVT(&YYMD,'I8YYMD','YYMD')),'M', + 1 )-2),'YYMD','I8YYMD');
-TYPE &DAYS


Excellent...

Francis,

Hope you feel better next week??? Smiler

Tom


Tom Flynn
WebFOCUS 8.1.05 - PROD/QA
DB2 - AS400 - Mainframe
 
Posts: 1972 | Location: Centennial, CO | Registered: January 31, 2006Report This Post
Member
posted Hide Post
Thanks to all of you

I appreciate it

Have a nice day

Mila


WebFOCUS 7.1
UNIX
 
Posts: 18 | Registered: May 15, 2008Report 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     calculation of date = today + 1month - 2 days in Dialog manager

Copyright © 1996-2020 Information Builders