Value Set Query
select ffvv.flex_value
from fnd_flex_values_vl ffvv,fnd_flex_value_sets ffvs
where ffvs.flex_value_set_name = :p_value_set_name
and ffvv.flex_value_set_id = ffvs.flex_value_set_id
and ffvv.enabled_flag = 'Y'
order by 1
from fnd_flex_values_vl ffvv,fnd_flex_value_sets ffvs
where ffvs.flex_value_set_name = :p_value_set_name
and ffvv.flex_value_set_id = ffvs.flex_value_set_id
and ffvv.enabled_flag = 'Y'
order by 1
Comments
Post a Comment