Did I miss something ...?
I welcome comments on my page, It is encouraging me to do more on my blog and share knowledge which I gained from my past experience.
Monday, March 31, 2014
Oracle EBS - How get values of Value Sets
SELECT L.FLEX_VALUE
FROM FND_FLEX_VALUE_SETS H,
FND_FLEX_VALUES_VL L
WHERE H.FLEX_VALUE_SET_NAME = 'XX_VALUE_SET_NAME'
AND L.FLEX_VALUE_SET_ID = H.FLEX_VALUE_SET_ID
AND L.ENABLED_FLAG = 'Y';
No comments:
Post a Comment