DBA Data[Home] [Help]

APPS.POR_APPRV_WF_UTIL_GRP dependencies on FND_FLEX_EXT

Line 85: l_segments fnd_flex_ext.SegmentArray;

81: l_cost_center VARCHAR2(200);
82: l_account_id gl_sets_of_books.chart_of_accounts_id%TYPE;
83: cost_center_1 VARCHAR2(200);
84: cc_Id po_req_distributions_all.code_combination_id%TYPE;
85: l_segments fnd_flex_ext.SegmentArray;
86: nsegments NUMBER;
87: multiple_cost_center VARCHAR2(100):= '';
88: dist_num NUMBER;
89:

Line 135: IF fnd_flex_ext.get_segments( 'SQLGL','GL#', l_account_id,cc_id,nsegments,l_segments) THEN

131: LOOP
132: FETCH ccId_csr INTO cc_Id;
133: EXIT WHEN ccid_csr%NOTFOUND;
134:
135: IF fnd_flex_ext.get_segments( 'SQLGL','GL#', l_account_id,cc_id,nsegments,l_segments) THEN
136: l_cost_center := l_segments(l_segment_num);
137: ELSE
138: l_cost_center := '';
139: END IF;

Line 153: IF fnd_flex_ext.get_segments( 'SQLGL','GL#', l_account_id,cc_id,nsegments,l_segments) THEN

149: END IF;
150: END LOOP;
151: CLOSE ccId_csr;
152: IF l_cost_center <> multiple_cost_center THEN
153: IF fnd_flex_ext.get_segments( 'SQLGL','GL#', l_account_id,cc_id,nsegments,l_segments) THEN
154: l_cost_center := l_segments(l_segment_num);
155: ELSE
156: l_cost_center := '';
157: END IF;