DBA Data[Home] [Help]

APPS.ICX_GET dependencies on GL_CODE_COMBINATIONS_KFV

Line 107: FROM GL_CODE_COMBINATIONS_KFV

103: BEGIN
104: /* Get the account number concatentated segments */
105: SELECT concatenated_segments
106: INTO x_concat_segments
107: FROM GL_CODE_COMBINATIONS_KFV
108: WHERE code_combination_id = x_cc_id;
109: RETURN (x_concat_segments);
110: EXCEPTION
111: WHEN OTHERS THEN

Line 181: from gl_code_combinations_kfv

177: ,'SEGMENT28', SEGMENT28
178: ,'SEGMENT29', SEGMENT29
179: ,'SEGMENT30', SEGMENT30)
180: into v_seg_value
181: from gl_code_combinations_kfv
182: where code_combination_id = cc_id
183: and rownum = 1;
184: return(v_seg_value);
185: exception