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.
I am using the below line to get previous business day. -SET &PRIBUSDAY = - DATECVT((DATEMOV((DATECVT(&YYMD,'I8YYMD','YYMD')),'PWD')),'YYMD','I8YYMD'); I am getting 20090703. I am assuming most of the companies were closed on Friday. Is there a work around or do I need to hard code depending on my companies holidays?
Thanks, SG.This message has been edited. Last edited by: Kerry,
Webfocus 7.6.8 PDF,HTML & EXCEL
Posts: 32 | Location: memphis,tn | Registered: January 25, 2007
DATECVT appears to behave differently when used in Dialogue Manager and WebFOCUS.
Example:
-SET &PRIBUSDAY =
- DATECVT((DATEMOV((DATECVT(&YYMD,'I8YYMD','YYMD')),'PWD')),'YYMD','I8YYMD');
-TYPE &PRIBUSDAY
DEFINE FILE CAR
DATE1/YYMD =
IF COUNTRY EQ 'ENGLAND' THEN '20090702' ELSE
IF COUNTRY EQ 'FRANCE' THEN '20090703' ELSE
IF COUNTRY EQ 'JAPAN' THEN '20090704' ELSE '20090705';
END
TABLE FILE CAR
PRINT DATE1
COMPUTE PRIBUSDAY/YYMD = DATEMOV(DATE1,'PWD');
HEADING
"PRIBUSDAY from dialog manager: &PRIBUSDAY"
BY COUNTRY
END
-RUN
Result:
PRIBUSDAY from dialog manager: 20090703
COUNTRY DATE1 PRIBUSDAY
--------- ---------- ----------
ENGLAND 2009/07/02 2009/07/01
FRANCE 2009/07/03 2009/07/02
ITALY 2009/07/05 2009/07/02
JAPAN 2009/07/04 2009/07/02
W GERMANY 2009/07/05 2009/07/02
Strangely, even without use of a holiday file, the previous business day is calculated to July 2nd, so the holiday seems to be built-in to WebFOCUS.
As well, use of the holiday file with the command SET HDAY appears not to work for Dialogue Manager.
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
I see no difference in both Dialogue Manager and Webfocus. you are getting different results since you are assigning '20090705' to DATE1. if you assign DATE1/YYMD = &YYMD you will get the same results.
Thanks, SG.
Webfocus 7.6.8 PDF,HTML & EXCEL
Posts: 32 | Location: memphis,tn | Registered: January 25, 2007
SET HDAY = 2009
-RUN
-SET &PRIBUSDAY =
- DATECVT((DATEMOV((DATECVT(&YYMD,'I8YYMD','YYMD')),'PWD')),'YYMD','I8YYMD');
-TYPE &PRIBUSDAY
DEFINE FILE CAR
DATE1/YYMD =
IF COUNTRY EQ 'ENGLAND' THEN '20090702' ELSE
IF COUNTRY EQ 'FRANCE' THEN '20090703' ELSE
IF COUNTRY EQ 'ITALY' THEN '20090704' ELSE
IF COUNTRY EQ 'JAPAN' THEN '20090705' ELSE '&YYMD';
END
TABLE FILE CAR
PRINT DATE1
COMPUTE PRIBUSDAY/YYMD = DATEMOV(DATE1,'PWD');
HEADING
"PRIBUSDAY from dialog manager: &PRIBUSDAY"
BY COUNTRY
END
-RUN
Result:
PRIBUSDAY from dialog manager: 20090703
COUNTRY DATE1 PRIBUSDAY
--------- ---------- ----------
ENGLAND 2009/07/02 2009/07/01
FRANCE 2009/07/03 2009/07/02
ITALY 2009/07/04 2009/07/02
JAPAN 2009/07/05 2009/07/02
W GERMANY 2009/07/06 2009/07/03
You're right. Even though I have 20090703 as a holiday in the HDAY file, it still is evaluated as a previous business day, despite the rule "A business day calculation is affected by the BUSDAYS and HDAY parameter settings".
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