DBA Data[Home] [Help]

PACKAGE: APPS.PA_PLAN_RL_FORMATS_PVT

Source


1 PACKAGE Pa_Plan_RL_Formats_Pvt AUTHID CURRENT_USER as
2 /* $Header: PARRFTVS.pls 120.0 2005/05/31 02:48:45 appldev noship $ */
3 /****************************************************
4  * Procedure   : Create_Plan_RL_Format
5  * Description : This is a Pvt procedure which takes in
6  *               parameters from
7  *               Pa_Plan_RL_Formats_Pub.Create_Plan_RL_Format
8  *               proc.
9  *               Details present in the Body.
10  ***************************************************/
11  Procedure Create_Plan_RL_Format(
12 	P_Res_List_id		   IN   NUMBER,
13 	P_Res_Format_Id		   IN   NUMBER,
14 	X_Plan_RL_Format_Id	   OUT  NOCOPY NUMBER,
15 	X_Record_Version_Number	   OUT  NOCOPY NUMBER,
16 	X_Return_Status		   OUT  NOCOPY VARCHAR2,
17 	X_Msg_Count		   OUT  NOCOPY NUMBER,
18 	X_Msg_Data		   OUT  NOCOPY VARCHAR2);
19 
20 
21 /****************************************************
22  * Procedure   : Delete_Plan_RL_Format
23  * Description : This is a Pvt procedure which takes in
24  *               parameters from
25  *               Pa_Plan_RL_Formats_Pub.Create_Plan_RL_Format
26  *               proc.
27  *               Details present in the Body.
28  ***************************************************/
29 Procedure Delete_Plan_RL_Format (
30         P_Res_List_Id    	 IN   NUMBER   DEFAULT Null,
31 	P_Res_Format_Id		 IN   NUMBER   DEFAULT Null,
32 	P_Plan_RL_Format_Id	 IN   NUMBER   DEFAULT Null,
33 	X_Return_Status		 OUT  NOCOPY   VARCHAR2,
34 	X_Msg_Count		 OUT  NOCOPY   NUMBER,
35 	X_Msg_Data		 OUT  NOCOPY   VARCHAR2);
36 
37 END Pa_Plan_RL_Formats_Pvt;