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.
In the University, we deal with soemthing called Aid Years (eg. 0607 for 2006-2007) and Term Codes (eg. Fall, Spring, Summer: 200608, 200701....). Here is how a university year works:
0607 includes 3 Term Codes for Fall, Spring, and Summer: 200608, 200701, 200705 respectively. 0708 would include 200708, 200801, 200805.
In my report, instead of prompting someone for 1 Aid Year and 3 Term Codes, I'd like to just prompt them for the aid year, and fill in the Term Codes based on their selection. Is this possible using Webfocus?
I use defines to get distribution ids which relate to terms thusly: RUNYEAR/A4 WITH STU_ID = '&YEAR'; YEARDIG/A1 = EDIT (RUNYEAR,'$$$9'); YEARNUM/I4 WITH STU_ID = &YEAR; YEARPREV/I4 = YEARNUM - 1; DISBA/A5 = '&YEAR' | '1'; DISBB/A5 = '&YEAR' | '2'; DISBC/A5 = EDIT(YEARPREV) | '4'; DISBD/A5 = EDIT(YEARPREV) | '3'; So for us if I pass 2007 (which you call 0607) you end up with 20063, 20071, 20072, 20074
You would have to convert your 0607 year/a1 = '20 | edit(awardear,'$$99'); to the equivalent of 2006 and then whatever you use for terms for the 'years'
Leah
Posts: 1317 | Location: Council Bluffs, IA | Registered: May 24, 2004
Originally posted by Leah: I use defines to get distribution ids which relate to terms thusly: RUNYEAR/A4 WITH STU_ID = '&YEAR'; YEARDIG/A1 = EDIT (RUNYEAR,'$$$9'); YEARNUM/I4 WITH STU_ID = &YEAR; YEARPREV/I4 = YEARNUM - 1; DISBA/A5 = '&YEAR' | '1'; DISBB/A5 = '&YEAR' | '2'; DISBC/A5 = EDIT(YEARPREV) | '4'; DISBD/A5 = EDIT(YEARPREV) | '3'; So for us if I pass 2007 (which you call 0607) you end up with 20063, 20071, 20072, 20074
You would have to convert your 0607 year/a1 = '20' | edit(awardear,'$$99'); to the equivalent of 2006 and then whatever you use for terms for the 'years'
Leah
Posts: 1317 | Location: Council Bluffs, IA | Registered: May 24, 2004