Opa!
Segue QUERY para recuperar os valores referentes às listas de valores cadastradas no Oracle EBS.
select b.flex_value
,t.description
from fnd_flex_values_tl t
,fnd_flex_values b
,fnd_flex_value_sets s
where b.flex_value_id = t.flex_value_id
and t.language = userenv('LANG')
and b.flex_value_set_id = s.flex_value_set_id
and flex_value_set_name = &lista
and trunc(sysdate) between nvl(start_date_active, trunc(sysdate))
and nvl(end_date_active, trunc(sysdate))
and b.enabled_flag = 'Y'
order by t.description
Falows!
Nenhum comentário:
Postar um comentário