DBA Data[Home] [Help]

APPS.PA_FP_SPREAD_CURVES_UTILS dependencies on PA_RESOURCE_ASSIGNMENTS

Line 10: Select 'Y' from pa_resource_assignments

6: /* This function checks whether the spread curve is in use in Budgeting and Forecasting or not */
7:
8: FUNCTION is_spread_curve_in_use ( p_spread_curve_id IN Pa_spread_curves_b.spread_curve_id%TYPE ) RETURN VARCHAR2 IS
9: Cursor C1 IS
10: Select 'Y' from pa_resource_assignments
11: where spread_curve_id = p_spread_curve_id;
12:
13: l_return_flag varchar2(1) := 'Y';
14: BEGIN