DBA Data[Home] [Help]

APPS.PO_COMPARE_REVISIONS dependencies on GL_CODE_COMBINATIONS_KFV

Line 3175: * gl_code_combinations_kfv.

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

Line 3179: * GL_CODE_COMBINATIONS_KFV view.

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

Line 3199: FROM gl_code_combinations_kfv

3195: v_progress := '830';
3196:
3197: SELECT concatenated_segments
3198: INTO v_charge_account
3199: FROM gl_code_combinations_kfv
3200: WHERE code_combination_id = p_code_combination_id;
3201:
3202: RETURN v_charge_account;
3203: