Seeded Lookups with their values in HCM — Cloud Customer Connect
You're almost there! Please answer a few more questions for access to the Applications content. Complete registration
Interested in joining? Complete your registration by providing Areas of Interest here. Register
Get Started with Redwood: Oracle Cloud SCM and Purchasing

Seeded Lookups with their values in HCM

edited Sep 18, 2020 7:44AM in Reporting and Analytics for HCM 3 comments

Summary

Need a list of lookups with their values

Content

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

20B

Code 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
Tagged:

Howdy, Stranger!

Log In

To view full details, sign in.

Register

Don't have an account? Click here to get started!