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.
Could some please point me in the right direction for any documentation on this?
My Code:
JOIN CLEAR *
JOIN
ACTIVEPOP.EMP_SSN
IN ACTIVEPOP TO ALL CEESTATUS.EMP_SSN
IN CEESTATUS
AS J1
END
TABLE FILE ACTIVEPOP
PRINT
ACTIVEPOP.PRD_DATE AS 'PRD_DATE'
ACTIVEPOP.EMP_SSN AS 'EMP_SSN'
ACTIVEPOP.PENSION_PLAN_NBR AS 'PENSION_PLAN_NBR'
ACTIVEPOP.EMPLOYEE_STATUS_CODE AS 'EMPLOYEE_STATUS_CODE'
ACTIVEPOP.BATCH_TERM_PROCESS_PENDING_IND AS 'BATCH_TERM_PROCESS_PENDING_IND'
ACTIVEPOP.PAYMENT_FREQUENCY AS 'PAYMENT_FREQUENCY'
ACTIVEPOP.BENEFIT_PAYMENT_OPTION AS 'BENEFIT_PAYMENT_OPTION'
CEESTATUS.ELIGIBILITY_STATUS_CODE AS 'ELIGIBILITY_STATUS_CODE'
CEESTATUS.GI_EMPLOYEE_STATUS_CODE AS 'GI_EMPLOYEE_STATUS_CODE'
ON TABLE HOLD AS ACTIVEPOP2
END
DEFINE FILE ACTIVEPOP2
CNTR/I8= WITH PRD_DATE = 1;
END
TABLE FILE ACTIVEPOP2
SUM
TOT.ACTIVEPOP2.EMP_SSN
ACTIVEPOP2.PENSION_PLAN_NBR AS 'Plan Code'
CNT.ACTIVEPOP2.EMP_SSN AS '# of Emps'
CNTR
COMPUTE PERCENT/D6.2% = (C3/(C1/C4))*100;
BY PRD_DATE RECOMPUTE
BY ACTIVEPOP2
END
BY ACTIVEPOP2.PENSION_PLAN_NBR NOPRINT
WHERE ACTIVEPOP2.ELIGIBILITY_STATUS_CODE NE 'D'
WHERE ACTIVEPOP2.GI_EMPLOYEE_STATUS_CODE NE 'D'
ON TABLE PCHOLD FORMAT EXL2K
END
This message has been edited. Last edited by: Kerry,
TABLE FILE ACTIVEPOP2
SUM
ACTIVEPOP2.PENSION_PLAN_NBR AS 'Plan Code'
CNT.ACTIVEPOP2.EMP_SSN AS '# of Emps'
PCT.EMP_SSN/D6% WITHIN ACTIVEPOP2 AS 'Pct%'
BY ACTIVEPOP2.PENSION_PLAN_NBR NOPRINT
ON TABLE RECOMPUTE
Gives me:
(FOC282) RESULT OF EXPRESSION IS NOT COMPATIBLE WITH THE FORMAT OF FIELD: EMP_SSN
JOIN CLEAR *
JOIN
ACTIVEPOP.EMP_SSN
IN ACTIVEPOP TO ALL CEESTATUS.EMP_SSN
IN CEESTATUS
AS J1
END
TABLE FILE ACTIVEPOP
PRINT
ACTIVEPOP.PRD_DATE AS 'PRD_DATE'
ACTIVEPOP.EMP_SSN AS 'EMP_SSN'
ACTIVEPOP.PENSION_PLAN_NBR AS 'PENSION_PLAN_NBR'
ACTIVEPOP.EMPLOYEE_STATUS_CODE AS 'EMPLOYEE_STATUS_CODE'
ACTIVEPOP.BATCH_TERM_PROCESS_PENDING_IND AS 'BATCH_TERM_PROCESS_PENDING_IND'
ACTIVEPOP.PAYMENT_FREQUENCY AS 'PAYMENT_FREQUENCY'
ACTIVEPOP.BENEFIT_PAYMENT_OPTION AS 'BENEFIT_PAYMENT_OPTION'
CEESTATUS.ELIGIBILITY_STATUS_CODE AS 'ELIGIBILITY_STATUS_CODE'
CEESTATUS.GI_EMPLOYEE_STATUS_CODE AS 'GI_EMPLOYEE_STATUS_CODE'
WHERE CEESTATUS.ELIGIBILITY_STATUS_CODE NE 'D'
WHERE CEESTATUS.GI_EMPLOYEE_STATUS_CODE NE 'D'
ON TABLE HOLD AS ACTIVEPOP2
END
-*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
-* Final - Active Population - Summary
-*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
TABLE FILE ACTIVEPOP2
SUM
ACTIVEPOP2.PENSION_PLAN_NBR AS 'Plan Code'
CNT.ACTIVEPOP2.EMP_SSN AS '# of Emps'
PCT.CNT.ACTIVEPOP2.EMP_SSN AS '# of Total'
BY ACTIVEPOP2.PENSION_PLAN_NBR NOPRINT
ON TABLE PCHOLD FORMAT EXL2K
END
This message has been edited. Last edited by: ColdWhiteMilk,