DBA Data[Home] [Help]

APPS.IGS_FI_PRC_ACCT_PKG dependencies on FND_FLEX_EXT

Line 38: l_v_delimiter fnd_id_flex_structures.concatenated_segment_delimiter%TYPE := fnd_flex_ext.get_delimiter('SQLGL','GL#',g_n_coa_id);

34: ***************************************************************** */
35:
36: -- Get the Delimiter that is set for the Segment Code Combinations
37: -- and use this for seperating the segments
38: l_v_delimiter fnd_id_flex_structures.concatenated_segment_delimiter%TYPE := fnd_flex_ext.get_delimiter('SQLGL','GL#',g_n_coa_id);
39: l_v_null igs_lookup_values.meaning%TYPE;
40: BEGIN
41:
42:

Line 110: l_sv_list fnd_flex_ext.segmentarray;

106: AND id_flex_code = cp_v_flex_cd;
107:
108: l_rev_gl_ccid NUMBER;
109: l_n_seg NUMBER; -- To hold the Number Segments defined for Flex field.
110: l_sv_list fnd_flex_ext.segmentarray;
111: BEGIN
112: OPEN cur_n_seg('Y','GL#',g_n_coa_id);
113: FETCH cur_n_seg INTO l_n_seg;
114: CLOSE cur_n_seg;

Line 120: IF (fnd_flex_ext.get_combination_id( application_short_name => 'SQLGL',

116: FOR i IN 1 .. g_accsegs.COUNT LOOP
117: l_sv_list(i) := g_accsegs(i).lv_segment_value;
118: END LOOP;
119: -- After the following funcion call, Revenue CCID is returned to x_cr_gl_ccid paramter which is a OUT NOCOPY paramter
120: IF (fnd_flex_ext.get_combination_id( application_short_name => 'SQLGL',
121: key_flex_code => 'GL#',
122: structure_number => g_n_coa_id,
123: validation_date => SYSDATE,
124: n_segments => l_n_seg,

Line 129: p_error_string := fnd_flex_ext.get_message;

125: segments => l_sv_list,
126: combination_id => l_rev_gl_ccid) = FALSE) THEN
127:
128: --If the Passed Combination of Values is Invalid then ROLLBACK the Transaction and return.
129: p_error_string := fnd_flex_ext.get_message;
130: p_error_string := p_error_string||' '||igs_fi_gen_gl.get_lkp_meaning('IGS_FI_LOCKBOX','SEGMENT_VALUE')||' ';
131: concat_seg_values(p_error_string,p_return_status);
132: IF (p_return_status = FALSE) THEN
133: --When and Unhandled Exception Occurs in Concat_seg_values then Return with Type 1 Error