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.
We would like to set up dashboards and reports run in report caster to automatically roll to the current academic term or finacial aid year. Accordingly we have developed the code below and would like to pass it at run time to many different reports so that they are "hands free" and do not require periodic maintenance. I had hoped that this could be done by a -INCLUDE but have not had any luck so far. I see the variables as external but have not been able to figure out how to utilize them to get my desired result setting default parameters.
DEFINE FILE STVTERM SET_START/YYMD=HDATE(STVTERM.STVTERM.STVTERM_START_DATE, 'YYMD'); SET_END/YYMD=HDATE(STVTERM.STVTERM.STVTERM_END_DATE, 'YYMD'); END TABLE FILE STVTERM SUM STVTERM.STVTERM.STVTERM_CODE COMPUTE DEF_FA1/A2 = EDIT(STVTERM.STVTERM.STVTERM_CODE, '$$99$$'); NOPRINT COMPUTE DEF_FA2/A2 = EDIT(STVTERM.STVTERM.STVTERM_CODE, '$$$$99'); NOPRINT COMPUTE DEF_FA3/I2 = EDIT(DEF_FA1); NOPRINT COMPUTE DEF_FA4/I2 = DEF_FA3 - 1; NOPRINT COMPUTE DEF_FA5/I2 = DEF_FA3 + 1; NOPRINT COMPUTE DEF_FA6/A2 = EDIT(DEF_FA4); NOPRINT COMPUTE DEF_FA7/A2 = EDIT(DEF_FA5); NOPRINT COMPUTE DEF_FAYR/A4 = IF DEF_FA2 EQ '20' OR '30' OR '40' THEN DEF_FA6 || DEF_FA1 ELSE IF DEF_FA2 EQ '80' THEN DEF_FA1 || DEF_FA7;
BY HIGHEST 1 STVTERM.STVTERM.STVTERM_CODE NOPRINT
WHERE &SYS_YR GE STVTERM.STVTERM.STVTERM_START_DATE;
ON TABLE SET PAGE-NUM NOLEAD ON TABLE NOTOTAL ON TABLE PCHOLD FORMAT HTML ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * INCLUDE = endeflt, $ ENDSTYLE ENDThis message has been edited. Last edited by: Geoff Fish,
This post was mark closed when in fact it was not. I am unable to implement the solution provided because I do not have access to edit the profile.
Are there any other oprtions for implementing the code above w/o inserting it into every report. I want tutilize it like a called or stored procedureThis message has been edited. Last edited by: Geoff Fish,