Descriptive Flex Field

Submitted by code_admin on Tue, 07/17/2018 - 12:46

Query to find descriptive flex fields:

  1. select
  2.   fdf.application_id,
  3.   fdf.descriptive_flexfield_name,
  4.   fdf.application_table_name,
  5.   fdft.title,
  6.   fdft.description
  7. from fnd_descriptive_flexs fdf
  8. left join (
  9.   select *
  10.   from fnd_descriptive_flexs_tl
  11. ) fdft on fdf.application_id=fdft.application_id
  12.       and fdf.descriptive_flexfield_name=fdft.descriptive_flexfield_name
  13. where 1=1
  14. and fdf.application_id=222
  15. and application_table_name like '%INT%';
RJM Article Type
Quick Reference