DBA Data[Home] [Help]

APPS.GMF_VALIDATIONS_PVT dependencies on GMF_LEGAL_ENTITIES

Line 3025: FROM gmf_legal_entities

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

Line 3029: l_chart_of_accounts_id gmf_legal_entities.chart_of_accounts_id%TYPE;

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

Line 3092: FROM gl_code_combinations_kfv glc, gmf_legal_entities gle

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