DBA Data[Home] [Help]

APPS.PA_BUDGET_PVT dependencies on PA_BC_BALANCES

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

8918:
8919:
8920: -- Function : Is_bc_enabled_for_budget
8921: -- Purpose : This functions returns true if a record exists in
8922: -- PA_BC_BALANCES table for the given budget version id
8923: -- Parameters : Budget Version Id.
8924: --
8925:
8926: FUNCTION Is_bc_enabled_for_budget

Line 8934: FROM pa_bc_balances

8930:
8931: CURSOR bc_enabled_for_budg_ver_csr
8932: IS
8933: SELECT 'Y'
8934: FROM pa_bc_balances
8935: WHERE budget_version_id = p_budget_version_id;
8936:
8937: l_return_value VARCHAR2(2) := 'N';
8938: