DBA Data[Home] [Help]

APPS.PA_PLAN_RL_FORMATS_PKG SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 4

 * This is a Table Handler Procedure for Inserting into
 * pa_plan_rl_formats table. It takes in parameters from
 * the Pa_Plan_RL_Formats_Pvt.Create_Plan_RL_Format procedure.
 *********************************************************/
 Procedure Insert_Row (
 	P_Resource_List_Id		 IN Number,
 	P_Res_Format_Id			 IN Number,
 	P_Last_Update_Date		 IN Date,
 	P_Last_Updated_By		 IN Number,
 	P_Creation_Date			 IN Date,
 	P_Created_By			 IN Number,
 	P_Last_Update_Login 		 IN Number,
	X_Plan_RL_Format_Id	        OUT NOCOPY Number,
	X_Record_Version_Number 	OUT NOCOPY NUMBER  )

 Is

	Cursor Return_RowId(P_Plan_RL_Format_Ident IN Number) is
  	Select
		RowId
	From
		Pa_Plan_RL_Formats
	Where
		Plan_RL_Format_Id = P_Plan_RL_Format_Ident;
Line: 30

	Select
		Pa_Plan_RL_Formats_S.nextval
	From
		Dual;
Line: 45

	Insert Into Pa_Plan_RL_Formats (
 		Plan_RL_Format_Id ,
	 	Resource_List_Id ,
	 	Res_Format_Id ,
		Record_Version_Number ,
	 	Last_Update_Date ,
	 	Last_Updated_By ,
	 	Creation_Date ,
	 	Created_By ,
	 	Last_Update_Login)
	Values (
		l_Plan_RL_Format_Id ,
	 	P_Resource_List_Id ,
	 	P_Res_Format_Id	,
		1 , -- record_version_number always starts with 1
	 	P_Last_Update_Date ,
		P_Last_Updated_By ,
	 	P_Creation_Date ,
	 	P_Created_By ,
	 	P_Last_Update_Login );
Line: 81

 End Insert_Row;
Line: 87

 * the Pa_Plan_RL_Formats_Pvt.Delete_Plan_RL_Format procedure.
 *********************************************************/
 Procedure Delete_Row (
	P_Res_List_Id    	IN Number Default Null,
	P_Res_Format_Id		IN Number Default Null,
	P_Plan_RL_Format_Id	IN Number Default Null )

 Is

 Begin

	If P_Plan_RL_Format_Id is Null Then

		Delete from Pa_Plan_RL_Formats
		where
			Resource_List_Id = P_Res_List_Id
		and   	Res_Format_Id = P_Res_Format_Id;
Line: 107

		Delete from Pa_Plan_RL_Formats
		Where
			Plan_RL_Format_Id = P_Plan_RL_Format_Id;
Line: 113

 End Delete_Row;