DBA Data[Home] [Help]

APPS.POS_COMPARE_REVISIONS dependencies on GL_CODE_COMBINATIONS_KFV

Line 4893: * gl_code_combinations_kfv.

4889: * get_charge_account
4890: *
4891: * PURPOSE
4892: * To fetch the charge account based on the ccid from the
4893: * gl_code_combinations_kfv.
4894: *
4895: * ARGUMENTS
4896: * p_code_combiation_id Unique identifier for charge account in
4897: * GL_CODE_COMBINATIONS_KFV view.

Line 4897: * GL_CODE_COMBINATIONS_KFV view.

4893: * gl_code_combinations_kfv.
4894: *
4895: * ARGUMENTS
4896: * p_code_combiation_id Unique identifier for charge account in
4897: * GL_CODE_COMBINATIONS_KFV view.
4898: *
4899: * NOTES
4900: * Return NULL if an error occurs.
4901: *

Line 4917: FROM gl_code_combinations_kfv

4913: v_progress := '830';
4914:
4915: SELECT concatenated_segments
4916: INTO v_charge_account
4917: FROM gl_code_combinations_kfv
4918: WHERE code_combination_id = p_code_combination_id;
4919:
4920: RETURN v_charge_account;
4921: