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.
IF (EDIT(ORG_CD,'9') EQ ‘B’ or ‘2’) AND (SUPERVISOR_LEVEL NE ' ') THEN RATINGX ELSE IF (EDIT(ORG_CD,'9') EQ ‘B’ or ‘2’)THEN RATINGZ ELSE RATINGY
Without knowing your data, if the person who 'moved' into 'B' or '2' and still has RATINGY, and assuming these ratings are all fields in the master, you may have to add more checks to your define, such as what is in the RATING_ field in question. Are they balnk if the other rating is still filled?
Leah
Posts: 1317 | Location: Council Bluffs, IA | Registered: May 24, 2004
RatingY is the field in the master, RatingX and RatingZ are in a separate table which I joined by using a Set All=ON. RatingX is a supervisor rating, RatingZ is an IC rating, and RatingY represents both supervisors and ICs. When a person moves into the B or 2 org, they keep the Y rating until they receive a new review and vice versa.
Thanks for asking questions, it helps me think thru what I'm trying to do.
IF (EDIT(ORG_CD,'9') EQ ‘B’ or ‘2’) AND (SUPERVISOR_LEVEL NE ' ') THEN RATINGX ELSE RATINGY
IF (EDIT(ORG_CD,'9') EQ ‘B’ or ‘2’) THEN RATINGZ ELSE RATINGY
Thanks for your input Tom, I've tried that, but the supervisor that just moved to the 2 org shows a blank when I request a report on the 2 org.
I would:
TEST1/AXX = IF (EDIT(ORG_CD,'9') EQ ‘B’ OR ‘2’) AND (SUPERVISOR_LEVEL NE ' ') THEN RATINGX ELSE IF (EDIT(ORG_CD,'9') EQ ‘B’ OR ‘2’) AND (SUPERVISOR_LEVEL EQ ' ') THEN RATINGZ ELSE RATINGY;