SQL Query for User Defined Key Flexfields (KFF) Segments in oracle fusion/cloud
Oracle Fusion User Defined Key Flexfields (KFF) Segments:
select c.name ,c.key_flexfield_code,a.structure_code,b.*
from
FND_KF_STRUCTURES_B a, fnd_kf_segments_b b, FND_KF_FLEXFIELDS_TL c where c.language ='US' and a.structure_id = b.structure_id and a.key_flexfield_code = c.key_flexfield_code and a.application_id = c.application_id and b.created_by <> 'SEED_DATA_FROM_APPLICATION' and a.created_by <> 'SEED_DATA_FROM_APPLICATION'
Comments
Post a Comment