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 am sure this can be done, and I am sure the answer is somewhere on this forum. I am just not sure of the terminology so I am having trouble searching for a solution.
I have a report that returns 12 different pay codes in columns and totals the hours worked under each code for each employee.
It works great. If anybody took any time off it list the date and pay code they used. The report is 12 columns wide.
We are changing the pay codes and now there are over 60. Instead of just choosing FML (Family Medical Leave) and adding a comment like FML - Child. You now choose FM2. Payroll knows FM2 is FML - Child. No more comments required. Our new payroll system does not have a field for comments.
The are 6 of these new pay codes for FML. FM1 - FM6. But we want them all to still show in a column titled FML. We do not need 6 across columns to represent these codes, they can share a column. I need all 60 of these new pay codes to display in just 12 columns.
Just use a (INCLUDE) define?
IF PAYCODE EQ FM* THEN FML; IF PAYCODE EQ B0* THEN FNL; IF PAYCODE EQ FLO THEN FLH;
etc, etc, for all of them?This message has been edited. Last edited by: Greg,
prod: WF 7.7.03 platform IIS on Windows 2007, databases: Oracle, , MSSQL
I already have a define on the paycode field that reads a comment filed to tell if the day off was scheduled or unscheduled.
-* DEFINE BEGIN PAYCODE
PAYCODE/A20 = IF PS_KV_PNCH_ANA_VW.PS_KV_PNCH_ANA_VW.COMMENTTEXT
EQ 'PL - Scheduled' AND PS_KV_PNCH_ANA_VW.PS_KV_PNCH_ANA_VW.PAYCODENAME EQ 'PER' OR 'PTO'
THEN 'PERS'
ELSE IF PS_KV_PNCH_ANA_VW.PS_KV_PNCH_ANA_VW.COMMENTTEXT
EQ 'PL - Unscheduled' AND PS_KV_PNCH_ANA_VW.PS_KV_PNCH_ANA_VW.PAYCODENAME EQ 'PER' OR 'PTO'
THEN 'PERU'
ELSE PS_KV_PNCH_ANA_VW.PS_KV_PNCH_ANA_VW.PAYCODENAME;
Should I make a new define or just expand this one to handle converting the new paycodes to old codes?
prod: WF 7.7.03 platform IIS on Windows 2007, databases: Oracle, , MSSQL