DBA Data[Home] [Help]

PACKAGE: APPS.EAM_MRI_UTILS

Source


1 PACKAGE eam_mri_utils AUTHID CURRENT_USER AS
2 /* $Header: EAMMRIUS.pls 115.2 2002/02/20 19:53:13 pkm ship   $ */
3 
4 --
5 -- Valid error types.
6 --
7   MSG_ERROR CONSTANT NUMBER := 1;
8   MSG_WARNING CONSTANT NUMBER := 2;
9   MSG_LOG CONSTANT NUMBER := 3;
10   MSG_COLUMN CONSTANT NUMBER := 4;
11   MSG_CONC CONSTANT NUMBER := 5;
12 
13 
14   /**
15    * This is almost a copy of WIP_JDI_Utils.Error_If_Batch. Just modified
16    * the table name and such to make it usable for meter reading interface.
17    */
18   procedure error_if_batch(p_group_id  number,
19                            p_new_process_status number,
20                            p_where_clause varchar2,
21                            p_error_type   number,
22                            p_error_msg    varchar2);
23 
24   procedure error_if(p_current_rowid  in rowid,
25                      p_interface_id in number,
26                      p_condition in varchar2,
27                      p_product_short_name in varchar2,
28                      p_message_name in varchar2);
29 
30 
31 END eam_mri_utils;