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.
Once you have the last calendar day of the month, how can you tell whether it's a Business day?
As far as I know, only solution is to move forward from EOM one BD, then back one BD. If EOM is a BD, you'll be back where you started; if not, you'll have found the last BD.
- Jack Gross WF through 8.1.05
Posts: 1925 | Location: NYC | In FOCUS since 1983 | Registered: January 11, 2005
DEFINE FILE CAR
DATE1/YYMD WITH COUNTRY = '20130115';
END
TABLE FILE CAR
PRINT
DATE1
COMPUTE DATE1_MP1/YYMD = DATEADD(DATE1, 'M', 1);
COMPUTE DATE1_MP1BOM/YYMD = DATEMOV(DATE1_MP1, 'BOM');
COMPUTE DATE1_LBD/YYMD = DATEMOV(DATE1_MP1BOM, 'PBD');
WHERE RECORDLIMIT EQ 1
END
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
SET BUSDAY = _MTWTF_
DEFINE FILE CAR
TODAY/MDYY= '&DATEMDYY';
LAST_BUSDAY/MDYY=DATEADD(DATEMOV(TODAY,'EOM') + 1,'BD',-1 );
END
TABLE FILE CAR
PRINT COUNTRY TODAY LAST_BUSDAY
WHERE RECORDLIMIT EQ 1
END
Posts: 1903 | Location: San Antonio | Registered: February 28, 2005