DBA Data[Home] [Help]

APPS.PA_PLAN_RL_FORMATS_PVT dependencies on PA_RES_TYPES_B

Line 34: Pa_Res_Formats_B a,pa_res_types_b b

30: Cursor c1 is
31: Select
32: b.res_type_code,a.Res_Type_Id, a.resource_class_id
33: From
34: Pa_Res_Formats_B a,pa_res_types_b b
35: Where
36: Res_Format_Id = P_Res_Format_Id
37: AND a.res_type_id = b.res_type_id;
38:

Line 42: pa_res_types_b typ

38:
39: CURSOR chk_job_format(P_Res_Format_Id IN NUMBER) IS
40: SELECT 'Y'
41: FROM Pa_Res_Formats_B fmt,
42: pa_res_types_b typ
43: WHERE fmt.Res_Format_Id = P_Res_Format_Id
44: AND fmt.res_type_id = typ.res_type_id
45: AND typ.res_type_code = 'JOB';
46: