Get Started with Redwood: Oracle Cloud SCM and Purchasing
Seeded Lookups with their values in HCM
Summary
Need a list of lookups with their valuesContent
Hello,
I need a seeded list of lookups types with their values, I was not able to find it in any subject area so attached is the snippet which I built but is not specific to HCM. Please let me know if anyone has been able to extract lookup types and their values only specific to HCM.
Version
20BCode Snippet
select LT.LOOKUP_TYPE, LT.MEANING "TYPE MEANING", LT.DESCRIPTION "TYPE DESC", LV.LOOKUP_CODE, LV.MEANING "VALUE MEANING", LV.DESCRIPTION "VALUE DESC" from FND_LOOKUP_TYPES_TL LT,FND_LOOKUP_VALUES_TL LV where LT.LANGUAGE = 'US' and LV.LANGUAGE = 'US' and LT.CREATED_BY = 'SEED_DATA_FROM_APPLICATION' and LT.LOOKUP_TYPE=LV.LOOKUP_TYPE
2