DBA Data[Home] [Help]

APPS.PA_BUDGET_PVT dependencies on PA_BC_BALANCES

Line 8765: -- PA_BC_BALANCES table for the given budget version id

8761:
8762:
8763: -- Function : Is_bc_enabled_for_budget
8764: -- Purpose : This functions returns true if a record exists in
8765: -- PA_BC_BALANCES table for the given budget version id
8766: -- Parameters : Budget Version Id.
8767: --
8768:
8769: FUNCTION Is_bc_enabled_for_budget

Line 8777: FROM pa_bc_balances

8773:
8774: CURSOR bc_enabled_for_budg_ver_csr
8775: IS
8776: SELECT 'Y'
8777: FROM pa_bc_balances
8778: WHERE budget_version_id = p_budget_version_id;
8779:
8780: l_return_value VARCHAR2(2) := 'N';
8781: