DBA Data[Home] [Help]

APPS.PA_FP_SPREAD_CURVES_UTILS dependencies on PA_RESOURCE_ASSIGNMENTS

Line 12: Select 'Y' from pa_resource_assignments

8: FUNCTION is_spread_curve_in_use ( p_spread_curve_id IN Pa_spread_curves_b.spread_curve_id%TYPE ) RETURN VARCHAR2 IS
9:
10: /* Start of Commenting code for bug 9036322
11: Cursor C1 IS
12: Select 'Y' from pa_resource_assignments
13: where spread_curve_id = p_spread_curve_id;
14: End of Commenting code for bug 9036322 */
15:
16: -- start of new code for bug 9036322

Line 19: from pa_resource_assignments;

15:
16: -- start of new code for bug 9036322
17: Cursor C1 IS
18: select distinct spread_curve_id
19: from pa_resource_assignments;
20: -- end of new code for bug 9036322
21:
22: l_return_flag varchar2(1) := 'Y';
23: BEGIN