DBA Data[Home] [Help]

APPS.PA_FUNDS_CONTROL_UTILS dependencies on GL_ENCUMBRANCE_TYPES

Line 620: -- budgetary control window .This is seeded into gl_encumbrance types

616:
617: -- -------------------------------------------------------------------------------------------+
618: -- R12 Funds management changes --Rshaik
619: -- IN R12, project encumbrance type is no more user enterable in Project
620: -- budgetary control window .This is seeded into gl_encumbrance types
621: -- Hence existing API has been modified to return seeded encumbrance type id
622: -- for BC enabled projects if encumbrance type in pa_budgetary_control_options is NULL
623: -- Also for performance reasons instead of calling PA_BUDGET_FUND_PKG.get_budget_ctrl_options
624: -- have cursor C_BUDGET_CONTROL to fetch required details.

Line 634: FROM gl_encumbrance_types

630: ) return number IS
631:
632: CURSOR get_seeded_enc_type_id IS
633: SELECT encumbrance_type_id
634: FROM gl_encumbrance_types
635: WHERE encumbrance_type_key = 'Projects';
636:
637: l_encumbrance_type_id PA_BUDGETARY_CONTROL_OPTIONS.encumbrance_type_id%TYPE;
638: