DBA Data[Home] [Help]

APPS.PA_FUNDS_CONTROL_UTILS dependencies on GL_ENCUMBRANCE_TYPES

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

727:
728: -- -------------------------------------------------------------------------------------------+
729: -- R12 Funds management changes --Rshaik
730: -- IN R12, project encumbrance type is no more user enterable in Project
731: -- budgetary control window .This is seeded into gl_encumbrance types
732: -- Hence existing API has been modified to return seeded encumbrance type id
733: -- for BC enabled projects if encumbrance type in pa_budgetary_control_options is NULL
734: -- Also for performance reasons instead of calling PA_BUDGET_FUND_PKG.get_budget_ctrl_options
735: -- have cursor C_BUDGET_CONTROL to fetch required details.

Line 745: FROM gl_encumbrance_types

741: ) return number IS
742:
743: CURSOR get_seeded_enc_type_id IS
744: SELECT encumbrance_type_id
745: FROM gl_encumbrance_types
746: WHERE encumbrance_type_key = 'Projects';
747:
748: l_encumbrance_type_id PA_BUDGETARY_CONTROL_OPTIONS.encumbrance_type_id%TYPE;
749: