DBA Data[Home] [Help]

APPS.GMF_VALIDATIONS_PVT dependencies on GMF_LEGAL_ENTITIES

Line 3027: FROM gmf_legal_entities

3023:
3024: CURSOR Cur_chart_of_accounts_id
3025: IS
3026: SELECT chart_of_accounts_id
3027: FROM gmf_legal_entities
3028: WHERE legal_entity_id = p_le_id ;
3029:
3030: l_account_id gl_aloc_bas.Basis_account_id%TYPE;
3031: l_chart_of_accounts_id gmf_legal_entities.chart_of_accounts_id%TYPE;

Line 3031: l_chart_of_accounts_id gmf_legal_entities.chart_of_accounts_id%TYPE;

3027: FROM gmf_legal_entities
3028: WHERE legal_entity_id = p_le_id ;
3029:
3030: l_account_id gl_aloc_bas.Basis_account_id%TYPE;
3031: l_chart_of_accounts_id gmf_legal_entities.chart_of_accounts_id%TYPE;
3032:
3033: BEGIN
3034:
3035: OPEN Cur_chart_of_accounts_id;

Line 3094: FROM gl_code_combinations_kfv glc, gmf_legal_entities gle

3090:
3091: CURSOR Cur_accounts_id
3092: IS
3093: SELECT code_combination_id
3094: FROM gl_code_combinations_kfv glc, gmf_legal_entities gle
3095: WHERE gle.legal_entity_id = p_le_id
3096: AND glc.code_combination_id = p_Basis_account_id
3097: AND gle.chart_of_accounts_id = glc.chart_of_accounts_id ;
3098: