How to Bulk Load Lookup Types and Lookup Codes
Do you know how to bulk load/migrate Lookup Types and Lookup Codes? Read on to know more details
Do you know how to bulk load/migrate Lookup Types and Lookup Codes? Read on to know more details
We will try to extract Valueset and Lookup values using SQL Query. Independent Valueset details: SELECT ffvs.flex_value_set_name ,ffvs.description set_description ,ffv.flex_value ,ffvt.flex_value_meaning ,ffvt.description value_description FROM fnd_flex_value_sets ffvs ,fnd_flex_values ffv ,fnd_flex_values_tl ffvt WHERE ffvs.flex_value_set_id = ffv.flex_value_set_id AND ffv.flex_value_id = ffvt.flex_value_id AND ffvt.LANGUAGE = USERENV('LANG') AND TRUNC(SYSDATE) BETWEEN NVL(ffv.start_date_active, trunc(SYSDATE)) AND NVL(ffv.end_date_active, trunc(SYSDATE + 1)) AND ffvs.flex_value_set_name = 'ABCD_BRANCH_VS' Table based Valueset details:…
In this article we will look into the most frequently used lookup codes for the application pages that are used every day in and day out. Want to learn Fusion Technical tools? Checkout the article When we navigate the Fusion pages, we see drop down lists for most of the fields having text drop down values. However when we query the…