DBA Data[Home] [Help]

APPS.BIS_RS_PROG_RUN_HISTORY_PKG SQL Statements

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

Line: 3

PROCEDURE Insert_Row(	 p_Set_request_id	Number,
			 p_Stage_request_id 	Number,
			 p_Request_id		Number,
			 p_Program_id		Number,
			 p_Prog_app_id		Number,
			 p_Status_code		Varchar2,
			 p_Phase_code		Varchar2,
			 p_Start_date		DATE,
			 p_Completion_date	Date,
			 p_Creation_date         DATE,
			 p_Created_by            NUMBER,
			 p_Last_update_date      DATE,
			 p_Last_updated_by       NUMBER,
                         p_completion_text       VARCHAR2
                      )
is

BEGIN

	insert into BIS_RS_PROG_RUN_HISTORY
				(Set_request_id,
				 Stage_request_id,
				 Request_id,
				 Program_id,
				 Prog_app_id,
				 Status_code,
				 Phase_code,
				 Start_date,
				 Completion_date,
				 Creation_date,
				 Created_by,
				 Last_update_date,
				 Last_updated_by,
				 Completion_Text )
				values
				(p_Set_request_id,
				 p_Stage_request_id,
				 p_Request_id,
				 p_Program_id,
				 p_Prog_app_id,
				 p_Status_code,
				 p_Phase_code,
				 p_Start_date,
				 p_Completion_date,
				 p_Creation_date,
				 p_Created_by,
				 p_Last_update_date,
				 p_Last_updated_by,
				 p_completion_text);
Line: 56

     BIS_COLLECTION_UTILITIES.put_line('Exception happens in BIS_RS_PROG_RUN_HISTORY_PKG.Insert_Row ' ||  sqlerrm);
Line: 62

FUNCTION Update_Row(	 p_Set_request_id	Number,
			 p_Stage_request_id 	Number,
			 p_Request_id		Number,
			 p_Program_id		Number DEFAULT NULL,
			 p_Prog_app_id		Number DEFAULT NULL,
			 p_Status_code		Varchar2 DEFAULT NULL,
			 p_Phase_code		Varchar2 DEFAULT NULL,
			 p_Completion_date	Date DEFAULT NULL,
			 p_Last_update_date      DATE,
			 p_Last_updated_by       NUMBER,
                         p_completion_text       VARCHAR2 DEFAULT NULL) RETURN BOOLEAN
IS

setClause varchar2(5000):=null;
Line: 80

if(p_Set_request_id is null or p_Request_id is null or p_Last_update_date is null or p_Last_updated_by  is null) THEN
	return FALSE;
Line: 112

setClause :=setClause || 'Last_update_date = '''|| p_Last_update_date  || ''', ' ;
Line: 113

setClause :=setClause || 'Last_updated_by= ' || p_Last_updated_by ;
Line: 115

stmt := stmt || 'update BIS_RS_PROG_RUN_HISTORY set '|| setClause;
Line: 121

   update BIS_RS_PROG_RUN_HISTORY
   set Completion_text = p_completion_text
   where Set_request_id  = p_Set_request_id and Request_id = p_Request_id;
Line: 131

     BIS_COLLECTION_UTILITIES.put_line('Exception happens in BIS_RS_PROG_RUN_HISTORY_PKG.Update_Row ' ||  sqlerrm);
Line: 137

PROCEDURE Delete_Row (p_set_rq_id number)
IS
BEGIN

	DELETE FROM BIS_RS_PROG_RUN_HISTORY
	   WHERE SET_REQUEST_ID =p_set_rq_id;
Line: 146

     BIS_COLLECTION_UTILITIES.put_line('Exception happens in BIS_RS_PROG_RUN_HISTORY_PKG.Delete_Row ' ||  sqlerrm);