DBA Data[Home] [Help]

APPS.ITG_X_UTILS dependencies on FND_ID_FLEX_SEGMENTS

Line 44: ** Gets the fnd_id_flex_segments.application_column_name that is the

40: close getPoLineApproval;
41: return (returnvalue);
42: END;
43: /*
44: ** Gets the fnd_id_flex_segments.application_column_name that is the
45: ** qualifier provided for the chart structure provided. This is used in
46: ** the object view definitions (e.g., SYNC_COA and SYNC_PO) for outbound.
47: */
48: function getFlexQualifierSegment (

Line 54: FROM fnd_id_flex_segments s,

50: p_flexQualifierName varchar2
51: ) return varchar2 as
52: cursor getAppColName is
53: SELECT s.application_column_name
54: FROM fnd_id_flex_segments s,
55: fnd_segment_attribute_values sav,
56: fnd_segment_attribute_types sat
57: WHERE s.application_id = sav.application_id
58: AND s.id_flex_code = sav.id_flex_code

Line 264: FROM fnd_id_flex_segments s

260: AND id_flex_num = l_flexNum
261: AND enabled_flag = 'Y';
262: CURSOR getFlexSegs is
263: SELECT application_column_name col
264: FROM fnd_id_flex_segments s
265: WHERE application_id = appId
266: AND id_flex_code = flexCode
267: AND id_flex_num = l_flexNum
268: AND enabled_flag = 'Y'