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 have used DB_LOOKUP() for quite some time now and now I a have ran into an issue. I cannot seem to recreate it with a CARE example due to how many fields I am passing. I have a DB_LOOKUP such that:
It will work, obviously it returns only the first value of multiple since I cannot have FIELD5 and FIELD6 from both HOLD files(FORMAT ALPHA).... I have made sure that the formats are are the same for the two fields A40 and A14. If I try just these two FIELDS in the DB_LOOKUP I get the same error:
I have the following for you to digest. How does a HOLD held in ALPHA SEGMENT exactly? Been trying to figure that out...
TABLE FILE OVERVIEW3 PRINT TOT_PTS_ACH TOT_PTS_POS BY TEACHER BY SUBJECT BY STRANDNM BY HT_Test_Date BY TESTNAME BY STARTDT ON TABLE HOLD AS OVERVIEW FORMAT ALPHA MORE FILE OVERVIEW2 MORE FILE OVERVIEW1 END
TABLE FILE INDIVIDUAL3 SUM PTS_ACH PTS_POS BY TEACHER BY HT_Test_Date BY TESTNAME BY STARTDT BY CLASS_GROUP BY HT_StudentId BY ORDER BY SUBJECT BY ORDER2 BY STRANDNM BY PERF ON TABLE HOLD AS INDIVIDUAL FORMAT ALPHA MORE FILE INDIVIDUAL2 MORE FILE INDIVIDUAL1 END
TABLE FILE INDIVIDUAL PRINT COMPUTE TOT_PTS_ACH2/I5= DB_LOOKUP(OVERVIEW,TEACHER,TEACHER,HT_Test_Date,HT_Test_Date,TESTNAME,TESTNAME,STARTDT,STARTDT,SUBJECT,SUBJECT,STRANDNM,STRANDNM,TOT_PTS_ACH); BY TEACHER BY HT_Test_Date BY TESTNAME BY STARTDT BY CLASS_GROUP
BY HT_StudentId BY ORDER NOPRINT BY SUBJECT BY ORDER2 NOPRINT BY STRANDNM BY PERF BY PTS_ACH BY PTS_POS END
Currenly working @ Learning Circle Education Services Previously worked @ Nationwide Insurance Prod: WebFOCUS 7.6.11
I verified that the contents will match up and contain the same type of data basically a school subject and then a subset of lower level subjects within each subject.
Currenly working @ Learning Circle Education Services Previously worked @ Nationwide Insurance Prod: WebFOCUS 7.6.11
Still like to figure out how this can be solved via DB_LOOKUP but I got it working by JOINING on STRANDNM and then using following without DB_LOOKUP still frustrated with DB_LOOKUOP and will conquer it...
WHERE IND_ALL.SEG01.TEACHER EQ OVERVIEW.SEG01.TEACHER; WHERE IND_ALL.SEG01.HT_Test_Date EQ OVERVIEW.SEG01.HT_Test_Date; WHERE IND_ALL.SEG01.TESTNAME EQ OVERVIEW.SEG01.TESTNAME; WHERE IND_ALL.SEG01.STARTDT EQ OVERVIEW.SEG01.STARTDT; WHERE IND_ALL.SEG01.SUBJECT EQ OVERVIEW.SEG01.SUBJECT; WHERE IND_ALL.SEG01.STRANDNM EQ OVERVIEW.SEG01.STRANDNM;
Currenly working @ Learning Circle Education Services Previously worked @ Nationwide Insurance Prod: WebFOCUS 7.6.11