DBA Data[Home] [Help]

PACKAGE: APPS.PA_PLAN_RL_FORMATS_PKG

Source


1 package Pa_Plan_RL_Formats_Pkg AUTHID CURRENT_USER as
2 /* $Header: PARRFTTS.pls 120.0 2005/05/29 12:01:21 appldev noship $ */
3 /************************************************************
4  * This is a Table Handler Procedure for inserting into
5  * pa_plan_rl_formats table. It takes in parameters from
6  * the Pa_Plan_RL_Formats_Pvt.Create_Plan_RL_Format procedure.
7  * ********************************************************/
8  Procedure Insert_Row (
9  	P_Resource_List_Id		 IN Number,
10  	P_Res_Format_Id			 IN Number,
11  	P_Last_Update_Date		 IN Date,
12  	P_Last_Updated_By		 IN Number,
13  	P_Creation_Date			 IN Date,
14  	P_Created_By			 IN Number,
15  	P_Last_Update_Login 		 IN Number,
16 	X_Plan_RL_Format_Id		OUT NOCOPY Number,
17 	X_Record_Version_Number 	OUT NOCOPY NUMBER );
18 
19 /************************************************************
20  * This is a Table Handler Procedure for Deleting from
21  * pa_plan_rl_formats table. It takes in parameters from
22  * the Pa_Plan_RL_Formats_Pvt.Delete_Plan_RL_Format procedure.
23  * ********************************************************/
24  Procedure Delete_Row (
25 	P_Res_List_Id    		 IN Number Default Null,
26 	P_Res_Format_Id			 IN Number Default Null,
27 	P_Plan_RL_Format_Id		 IN Number Default Null );
28 
29 
30 END Pa_Plan_RL_Formats_Pkg;