DBA Data[Home] [Help]

APPS.PA_PLAN_RES_LIST_PUB dependencies on PA_CREATE_RESOURCE

Line 1311: -- derive business_group_id to pass to Pa_Create_Resource.create_resource_list()

1307: X_Planning_resource_in_tbl => L_Planning_resource_in_tbl,
1308: P_Mode => l_mode);
1309:
1310:
1311: -- derive business_group_id to pass to Pa_Create_Resource.create_resource_list()
1312: -- procedure. The approach assumes that the user executing this procedure has
1313: -- already set the operating unit via dbms_application_info.set_client_info().
1314: -- Otherwise, a value of null will be passed to the called procedure.
1315: Select

Line 1331: * Call to the Pa_Create_Resource.Create_Resource_List API

1327: End If;
1328:
1329:
1330: /***************************************************************
1331: * Call to the Pa_Create_Resource.Create_Resource_List API
1332: * which will create a resource list, when we pass the
1333: * the corr values for resource_list_name, description etc
1334: * Its all a part of the P_plan_res_list_Rec record structure.
1335: * It will create a resource list and pass back the resource_list_id

Line 1340: Pa_Create_Resource.Create_Resource_List

1336: * value as an out parameter into l_resource_list_id variable.
1337: * This resource list ID value will then be passed while creating
1338: * resource formats and resource list members.
1339: ***************************************************************/
1340: Pa_Create_Resource.Create_Resource_List
1341: (p_resource_list_name => L_plan_res_list_Rec.p_resource_list_name,
1342: p_description => L_plan_res_list_Rec.p_description,
1343: p_public_flag => 'Y',
1344: p_group_resource_type => NULL,

Line 1661: * Call to API Pa_Create_Resource.Update_Resource_List to update

1657: END IF;
1658:
1659:
1660: /********************************************************
1661: * Call to API Pa_Create_Resource.Update_Resource_List to update
1662: * the resource_list with the newly passed values. Values are
1663: * passed thro the record struc P_plan_res_list_Rec.
1664: *********************************************************/
1665:

Line 1666: Pa_Create_Resource.Update_Resource_List

1662: * the resource_list with the newly passed values. Values are
1663: * passed thro the record struc P_plan_res_list_Rec.
1664: *********************************************************/
1665:
1666: Pa_Create_Resource.Update_Resource_List
1667: (p_resource_list_name => L_plan_res_list_Rec.p_resource_list_name,
1668: p_description => L_plan_res_list_Rec.p_description,
1669: p_start_date => L_plan_res_list_Rec.p_start_date,
1670: p_end_date => L_plan_res_list_Rec.p_end_date,

Line 2439: PA_CREATE_RESOURCE.Delete_Plan_Res_List (

2435: END IF;
2436:
2437: IF l_exist_res_list = 'N' THEN
2438: -- Call procedure to delete from base and TL tables
2439: PA_CREATE_RESOURCE.Delete_Plan_Res_List (
2440: p_resource_list_id => P_res_list_id,
2441: X_Return_Status => l_return_status,
2442: X_Msg_Count => l_msg_count,
2443: X_Msg_Data => l_msg_data);