All posts on Lookups

SQL Query to get the Valueset and Lookup Values

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:…

Continue ReadingSQL Query to get the Valueset and Lookup Values

Mapping of fields on Application pages to Lookup Codes

  • Post category:Others
  • Post comments:0 Comments
  • Post last modified:January 22, 2021
  • Reading time:7 mins read

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…

Continue ReadingMapping of fields on Application pages to Lookup Codes