DBA Data[Home] [Help]

PACKAGE: APPS.CUSTOMIZED_AG_ERR_MESSAGES

Source


1 PACKAGE CUSTOMIZED_AG_ERR_MESSAGES AUTHID CURRENT_USER AS
2 /* $Header: POXAGERS.pls 115.3 2002/11/23 03:36:10 sbull ship $ */
3 
4 /*
5    Created : Imran Ali 02/11/99
6 */
7 
8 --
9 -- Set_Message_Attribute
10 --   Sets the workflow error attribute with an encoded form of the message to be
11 --   passed back to the client.
12 --   Can take a max of 3 tokens and their values.
13 -- IN
14 --   itemtype  - A valid item type from (WF_ITEM_TYPES table).
15 --   itemkey   - A string generated by call to AOL's INITIALIZE routine.
16 --   funcmode  - Run/Cancel
17 -- OUT
18 --   Result
19 --	none
20 
21 --
22 -- Function Attributes
23 --	application_code - Short name of the application the message is associated with
24 --	message_name   	 - Message name as defined in the message dictionary
25 -- 	token1 		 - First token to be substituted in the message
26 -- 	token1_value 	 - Value of the first token to be substituted in the message
27 -- 	token2 		 - Second token to be substituted in the message
28 -- 	token2_value 	 - Value of the second token to be substituted in the message
29 -- 	token3 		 - Third token to be substituted in the message
30 -- 	token3_value 	 - Value of the third token to be substituted in the message
31 --
32 
33 procedure  Set_Message_Attribute ( itemtype        in  varchar2,
34                               	   itemkey         in  varchar2,
35 	                           actid           in number,
36                                    funcmode        in  varchar2,
37                                    result          out NOCOPY varchar2    );
38 
39 --
40 
41 End CUSTOMIZED_AG_ERR_MESSAGES;