DBA Data[Home] [Help]

APPS.CE_FORECAST_ERRORS_PKG SQL Statements

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

Line: 3

PROCEDURE Insert_Row(	X_forecast_id		NUMBER,
			X_forecast_header_id	NUMBER,
			X_forecast_row_id	NUMBER,
			X_message_name	        VARCHAR2,
			X_message_text		VARCHAR2) IS
   BEGIN
     INSERT INTO CE_FORECAST_ERRORS(
		application_short_name,
		forecast_header_id,
		forecast_id,
		forecast_row_id,
		message_name,
		message_text,
		creation_date,
		created_by)
              VALUES (
		'CE',
		X_forecast_header_id,
		X_forecast_id,
		X_forecast_row_id,
		X_message_name,
		X_message_text,
		sysdate,
		NVL(FND_GLOBAL.user_id,-1));
Line: 27

  END Insert_Row;
Line: 29

  PROCEDURE Insert_Row(	X_forecast_id		NUMBER,
			X_forecast_header_id	NUMBER,
			X_forecast_row_id	NUMBER,
			X_message_name	         VARCHAR2,
			X_message_text			VARCHAR2,
			X_application_short_name	 VARCHAR2) IS
   BEGIN
     INSERT INTO CE_FORECAST_ERRORS(
		application_short_name,
		forecast_header_id,
		forecast_id,
		forecast_row_id,
	        message_name,
		message_text,
		creation_date,
		created_by)
              VALUES (
		X_application_short_name,
		X_forecast_header_id,
		X_forecast_id,
		X_forecast_row_id,
		X_message_name,
		X_message_text,
		sysdate,
		NVL(FND_GLOBAL.user_id,-1));
Line: 54

  END Insert_Row;
Line: 56

  PROCEDURE Delete_Row(X_forecast_id NUMBER) IS
  BEGIN
    DELETE FROM CE_FORECAST_ERRORS
    WHERE forecast_id  = X_forecast_id;
Line: 60

  END Delete_Row;