Domain Value Lookup for EMPLOYMENT CATEGORY CODE in the W_EMPLOYMENT_D
775990Sep 7 2010 — edited Apr 18 2011Hello friends,
When I query the EBS with following code to put the data in the configuration file
SELECT DISTINCT SYSTEM_PERSON_TYPE, USER_PERSON_TYPE
FROM PER_PERSON_TYPES
WHERE SYSTEM_PERSON_TYPE IN ('EMP','CWK','OTHER','EMP_APL','EX_EMP','EX_EMP_
APL','RETIREE','PRTN')
ORDER BY 1,2
I get output as follows
CWK Contingent Worker
EMP Employee
EMP_APL Employee and Applicant
EX_EMP Ex-employee
OTHER Candidate
OTHER Contact
OTHER External
PRTN Participant
RETIREE Retiree
So, I want to put the data in the configuration file, what about other columns.
USER_PERSON_TYPE SYS_PERSON_TYPE W_EMPLOYEE_CATEGORY_CODE W_EMPLOYEE_CATEGORY_DESC W_EMPLOYEE_SUB_CAT_CODE W_EMPLOYEE_SUB_CAT_DESC
How should I fill the columns marked with bold.
Please help