Monday, May 8, 2017

Queries for Value Sets

Value Sets based on table:

This Query gives details of value sets that are based on a oracle application tables.

select ffvs.flex_value_set_id,
       ffvs.flex_value_set_name,
       ffvs.description set_description,
       ffvs.validation_type,
       ffvt.value_column_name,
       ffvt.meaning_column_name,
       ffvt.id_column_name,
       ffvt.application_table_name,
       ffvt.additional_where_clause
  FROM fnd_flex_value_sets ffvs, fnd_flex_validation_tables ffvt
 WHERE ffvs.flex_value_set_id = ffvt.flex_value_set_id
   AND ffvs.flex_value_set_name = 'XXX_COUNTRY_VS'

Independent Value set Details:

This query gives details of independent FND Value sets i.e. Values are static and these are not derived from any application table.


SELECT ffvs.flex_value_set_id,
       ffvs.flex_value_set_name,
       ffvs.description         set_description,
       ffvs.validation_type,
       ffv.flex_value_id,
       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 ffvs.flex_value_set_name = 'XXX_COUNTRY_VS'

No comments:

Post a Comment

Price List Query for Item

 SELECT qph.list_header_id,        qph.name,        qph.description,        qphh.start_date_active,        qphh.currency_code,        q...