DBA Data[Home] [Help]

APPS.PO_COMPARE_REVISIONS dependencies on GL_CODE_COMBINATIONS_KFV

Line 3178: * gl_code_combinations_kfv.

3174: * get_charge_account
3175: *
3176: * PURPOSE
3177: * To fetch the charge account based on the ccid from the
3178: * gl_code_combinations_kfv.
3179: *
3180: * ARGUMENTS
3181: * p_code_combiation_id Unique identifier for charge account in
3182: * GL_CODE_COMBINATIONS_KFV view.

Line 3182: * GL_CODE_COMBINATIONS_KFV view.

3178: * gl_code_combinations_kfv.
3179: *
3180: * ARGUMENTS
3181: * p_code_combiation_id Unique identifier for charge account in
3182: * GL_CODE_COMBINATIONS_KFV view.
3183: *
3184: * NOTES
3185: * Return NULL if an error occurs.
3186: *

Line 3202: FROM gl_code_combinations_kfv

3198: v_progress := '830';
3199:
3200: SELECT concatenated_segments
3201: INTO v_charge_account
3202: FROM gl_code_combinations_kfv
3203: WHERE code_combination_id = p_code_combination_id;
3204:
3205: RETURN v_charge_account;
3206: