DBA Data[Home] [Help]

APPS.PSA_UTILS dependencies on GL_CODE_COMBINATIONS_KFV

Line 203: from gl_code_combinations_kfv

199: l_path_name := g_path_name || '.PSA_Get_RFE_ccid';
200:
201: select concatenated_segments
202: into l_seg_rfe
203: from gl_code_combinations_kfv
204: where code_combination_id = 1002;
205:
206: debug_other_string(g_state_level,l_path_name, 'GET_RFE_CCID: RFE seg ' || l_seg_rfe);
207:

Line 219: from gl_code_combinations_kfv

215: debug_other_string(g_state_level,l_path_name, 'GET_RFE_CCID: Parameter received: ' || p_ccid);
216:
217: select concatenated_segments
218: into l_seg_ccid
219: from gl_code_combinations_kfv
220: where code_combination_id = p_ccid; --24350;
221:
222: debug_other_string(g_state_level,l_path_name, 'GET_RFE_CCID: CCID seg ' || l_seg_ccid);
223:

Line 243: from gl_code_combinations_kfv

239:
240:
241: select code_combination_id
242: into rfe_ccid
243: from gl_code_combinations_kfv
244: where segment1 = l_segarray_rfe(1)
245: and segment2 = l_segarray_rfe(2)
246: and segment3 = l_segarray_rfe(3)
247: and segment4 = l_segarray_rfe(4)