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'm sure this topic has been discussed but I don't know how to properly search for it. So please forgive me I did try searching before posting this question.
I'm running a FY report that will run based on the current date. For example if the report is generated before July 1st, the range of data will be 07/1/(year-2) through 06/30/(year-1) If report is generated on or after July 1st, the range of data will be 07/1(year-1) through 06/30(year)
Does anyone have an example of how this should be written?This message has been edited. Last edited by: <Kathryn Henning>,
The book is extremely valuable even though it could do with a serious redesign. It would help to employ the concept of white space, and put related items on the same or opposite pages, etc. It would be a lot more pages, but much more readable.
I have to run reports on State and Federal Fiscal Years.
The state fiscal year (SFY) is like yours, July-June. The federal fiscal year (FFY) is Oct-Sep.
I use the following DEFINE FUNCTION to take the desired date and return the appropriate fiscal year.
-* File getfy.fex
DEFINE FUNCTION GETFY(INDATE/A8YYMD,YRTYP/A1)
-*
-* For YRTYP S, get SFY for INDATE (Default)
-* For YRTYP F, get FFY for INDATE
-*
INDATE1/YYMD=INDATE;
INMTH/M=INDATE1;
INYEAR/YY=INDATE1;
YRTYP=IF NOT YRTYP IN ('F','S') THEN 'S';
GETFY/I4=
IF YRTYP EQ 'F' AND INMTH LT 10 OR YRTYP EQ 'S' AND INMTH LT 7
THEN INYEAR ELSE INYEAR+1;
END
-RUN
Because I use INDATE as A8YYMD format, I can use this anywhere.
Once I have the year, computing the begin and end dates for the year are simple.