DBA Data[Home] [Help]

APPS.FV_BE_UTIL_PKG dependencies on FND_FLEX_EXT

Line 22: p_header_segments fnd_flex_ext.SegmentArray,

18:
19: procedure check_cross_validation ( errbuf OUT NOCOPY varchar2,
20: retcode OUT NOCOPY number,
21: p_chart_of_accounts_id gl_sets_of_books.chart_of_accounts_id%TYPE,
22: p_header_segments fnd_flex_ext.SegmentArray,
23: p_detail_segments fnd_flex_ext.SegmentArray,
24: p_budget_level_id fv_be_trx_hdrs.budget_level_id%TYPE,
25: p_transaction_type_id fv_be_trx_dtls.transaction_type_id%TYPE,
26: p_sub_type fv_be_trx_dtls.sub_type%TYPE,

Line 23: p_detail_segments fnd_flex_ext.SegmentArray,

19: procedure check_cross_validation ( errbuf OUT NOCOPY varchar2,
20: retcode OUT NOCOPY number,
21: p_chart_of_accounts_id gl_sets_of_books.chart_of_accounts_id%TYPE,
22: p_header_segments fnd_flex_ext.SegmentArray,
23: p_detail_segments fnd_flex_ext.SegmentArray,
24: p_budget_level_id fv_be_trx_hdrs.budget_level_id%TYPE,
25: p_transaction_type_id fv_be_trx_dtls.transaction_type_id%TYPE,
26: p_sub_type fv_be_trx_dtls.sub_type%TYPE,
27: p_source fv_be_trx_hdrs.source%TYPE,

Line 39: l_gl_dr_segments fnd_flex_ext.SegmentArray;

35: l_valid_flag BOOLEAN;
36: l_dr_ccid NUMBER(15);
37: l_cr_ccid NUMBER(15);
38:
39: l_gl_dr_segments fnd_flex_ext.SegmentArray;
40: l_gl_cr_segments fnd_flex_ext.SegmentArray;
41:
42: l_dr_account gl_ussgl_account_pairs.dr_account_segment_value%TYPE;
43: l_cr_account gl_ussgl_account_pairs.cr_account_segment_value%TYPE;

Line 40: l_gl_cr_segments fnd_flex_ext.SegmentArray;

36: l_dr_ccid NUMBER(15);
37: l_cr_ccid NUMBER(15);
38:
39: l_gl_dr_segments fnd_flex_ext.SegmentArray;
40: l_gl_cr_segments fnd_flex_ext.SegmentArray;
41:
42: l_dr_account gl_ussgl_account_pairs.dr_account_segment_value%TYPE;
43: l_cr_account gl_ussgl_account_pairs.cr_account_segment_value%TYPE;
44:

Line 135: l_valid_flag := fnd_flex_ext.get_combination_id('SQLGL', 'GL#',

131: l_gl_cr_segments(g_gl_seg_num) := l_dr_account;
132: l_gl_dr_segments(g_gl_seg_num) := l_cr_account;
133: end if;
134:
135: l_valid_flag := fnd_flex_ext.get_combination_id('SQLGL', 'GL#',
136: g_chart_of_accounts_id, SYSDATE, g_n_segments, l_gl_cr_segments,l_cr_ccid);
137: if (not l_valid_flag) then
138: retcode := 2;
139: errbuf := fnd_flex_ext.get_message;

Line 139: errbuf := fnd_flex_ext.get_message;

135: l_valid_flag := fnd_flex_ext.get_combination_id('SQLGL', 'GL#',
136: g_chart_of_accounts_id, SYSDATE, g_n_segments, l_gl_cr_segments,l_cr_ccid);
137: if (not l_valid_flag) then
138: retcode := 2;
139: errbuf := fnd_flex_ext.get_message;
140: return;
141: end if;
142: l_valid_flag := fnd_flex_ext.get_combination_id('SQLGL', 'GL#',
143: g_chart_of_accounts_id, SYSDATE, g_n_segments, l_gl_dr_segments,l_dr_ccid);

Line 142: l_valid_flag := fnd_flex_ext.get_combination_id('SQLGL', 'GL#',

138: retcode := 2;
139: errbuf := fnd_flex_ext.get_message;
140: return;
141: end if;
142: l_valid_flag := fnd_flex_ext.get_combination_id('SQLGL', 'GL#',
143: g_chart_of_accounts_id, SYSDATE, g_n_segments, l_gl_dr_segments,l_dr_ccid);
144: if (not l_valid_flag) then
145: retcode := 2;
146: errbuf := fnd_flex_ext.get_message;

Line 146: errbuf := fnd_flex_ext.get_message;

142: l_valid_flag := fnd_flex_ext.get_combination_id('SQLGL', 'GL#',
143: g_chart_of_accounts_id, SYSDATE, g_n_segments, l_gl_dr_segments,l_dr_ccid);
144: if (not l_valid_flag) then
145: retcode := 2;
146: errbuf := fnd_flex_ext.get_message;
147: return;
148: end if;
149: end loop;
150: close accounts_cur;

Line 165: procedure initialize_gl_segments(p_from_segments IN fnd_flex_ext.SegmentArray,

161:
162: end; --check_cross_validation
163:
164:
165: procedure initialize_gl_segments(p_from_segments IN fnd_flex_ext.SegmentArray,
166: p_to_segments OUT NOCOPY fnd_flex_ext.SegmentArray) is
167:
168: l_module_name VARCHAR2(200) := g_module_name || 'initialize_gl_segments';
169:

Line 166: p_to_segments OUT NOCOPY fnd_flex_ext.SegmentArray) is

162: end; --check_cross_validation
163:
164:
165: procedure initialize_gl_segments(p_from_segments IN fnd_flex_ext.SegmentArray,
166: p_to_segments OUT NOCOPY fnd_flex_ext.SegmentArray) is
167:
168: l_module_name VARCHAR2(200) := g_module_name || 'initialize_gl_segments';
169:
170: cursor flex_fields is