DBA Data[Home] [Help]

APPS.POS_GET dependencies on GL_CODE_COMBINATIONS_KFV

Line 102: FROM GL_CODE_COMBINATIONS_KFV

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

Line 178: from gl_code_combinations_kfv

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