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.
Hi WebFOCUS “Cummunity”, Recently we step to the point where we want to have multiple time variables available for our users and programmers no matter the IBI tool they are using to create their report.
Those variables change every day based on the current date and our SQL table which has our Retail calendar. The fex find some value such as the current Retail Year, the previous Retail Year and the Retail Year of two years ago and so on. The same calculation is done for week and month number.
That calculation part was not difficult to setup and the variables was available from any IBI tool. The problem was Report Caster. If report, using any of the defined variables was scheduled, Report Caster did not recognize the variables.
To solve this problem here what we did.
1- Define the variables as global variables, ex: &&R1YEAR
2- Change the variable setup fex (PERIOD_CALCULATION.fex) to “write” a “SET” command line in a “report” as follow:
-* File PERIOD_CALCULATION.fex -* -* DETERMINE SOME CURRENT AND PREVIOUS TIME INFORMATION -* SUCH AS : -* - RETAIL-1 YEAR, MONTH, WEEK -* - CALENDAR YEAR, MONTH, WEEK -* -SET &CURR_DATE=&YYMD; -SET &PREV_DATE=AYMD(&YYMD, -1, 'I8YYMD'); FILEDEF DAYVARS DISK usual_modules/day_variables.fex END -RUN -WRITE DAYVARS NOCLOSE -* LAST UPDATED &DATEYYMD.EVAL &TOD.EVAL -RUN -WRITE DAYVARS NOCLOSE -SET &|&|CURR_DATE=&CURR_DATE.EVAL; -WRITE DAYVARS NOCLOSE -SET &|&|PREV_DATE=&PREV_DATE.EVAL; -RUN
DEFINE FILE CL_SALES_WEEKLY R1YEAR/I4=CL_SALES_WEEKLY.DWD_V_TIME.DWD_TIME_RETAIL_YR; END TABLE FILE CL_SALES_WEEKLY BY R1YEAR WHERE ( CL_SALES_WEEKLY.DWD_V_TIME.DWD_TIME_DATE EQ DT(&CURR_DATE) ); ON TABLE SET PAGE-NUM OFF ON TABLE NOTOTAL ON TABLE SAVE AS 'CURR_YEAR_SAVE' FORMAT ALPHA ON TABLE SET HTMLCSS ON END -RUN
-* TO AVOID ACCESS PROBLEM WHEN DB NOT AVAILABLE -* BUT STILL ABLE TO WORK -IF &RETCODE NE 0 THEN GOTO NOACCESS;
Thanks for your suggestion Frank but we are not using the &YYMD to set our &&R1YEAR because the retail year do not have necessarly the same start as the civil year.
Reason why I'm reading it from a SQL table that is feed by the retail calendar and changed every year.
And yes it seems to be complex, but not that much and it is the only way to have RC able to read many variables. It is not in the scope of the product's changes for now to do it. So we have to find a work around.
WF 7.6.11 HF4 gen34, WF 7.7.03 gen 253, Windows 64 bit Excel, PDF, HTML