DBA Data[Home] [Help]

APPS.POS_GET dependencies on GL_CODE_COMBINATIONS_KFV

Line 103: FROM GL_CODE_COMBINATIONS_KFV

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

Line 179: from gl_code_combinations_kfv

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