DBA Data[Home] [Help]

APPS.POS_COMPARE_REVISIONS dependencies on GL_CODE_COMBINATIONS_KFV

Line 4887: * gl_code_combinations_kfv.

4883: * get_charge_account
4884: *
4885: * PURPOSE
4886: * To fetch the charge account based on the ccid from the
4887: * gl_code_combinations_kfv.
4888: *
4889: * ARGUMENTS
4890: * p_code_combiation_id Unique identifier for charge account in
4891: * GL_CODE_COMBINATIONS_KFV view.

Line 4891: * GL_CODE_COMBINATIONS_KFV view.

4887: * gl_code_combinations_kfv.
4888: *
4889: * ARGUMENTS
4890: * p_code_combiation_id Unique identifier for charge account in
4891: * GL_CODE_COMBINATIONS_KFV view.
4892: *
4893: * NOTES
4894: * Return NULL if an error occurs.
4895: *

Line 4911: FROM gl_code_combinations_kfv

4907: v_progress := '830';
4908:
4909: SELECT concatenated_segments
4910: INTO v_charge_account
4911: FROM gl_code_combinations_kfv
4912: WHERE code_combination_id = p_code_combination_id;
4913:
4914: RETURN v_charge_account;
4915: