DBA Data[Home] [Help]

PACKAGE: APPS.CTO_MSG_PUB

Source


1 package CTO_MSG_PUB AUTHID CURRENT_USER as
2 /* $Header: CTOUMSGS.pls 120.2 2006/03/17 12:07:08 rekannan noship $*/
3 
4 /*----------------------------------------------------------------------------+
5 | Copyright (c) 1993 Oracle Corporation    Belmont, California, USA
6 |                       All rights reserved.
7 |                       Oracle Manufacturing
8 |
9 |FILE NAME   : CTOUMSGS.pls
10 |
11 |DESCRIPTION : Contains APIs to :
12 |		control the error message handling
13 |
14 |HISTORY     : Created on 18-JAN-2002  by Shashi Bhaskaran
15 |              Modified   25-MAR-2002  by Shashi Bhaskaran
16 |                         Added p_token as a new argument to cto_message to
17 |                         handle tokens.
18 |
19 +-----------------------------------------------------------------------------*/
20 
21   -- Modified by Renga Kannnan on 03/17/06
22   -- Increased the varchar2 length form token_value from 250 to 2000
23   -- Bug fix for bug 5086585
24 
25   TYPE token_rec is record (
26 			token_name 	varchar2(30),
27 			token_value 	varchar2(2000));
28 
29 
30   TYPE token_tbl is table of token_rec index by binary_integer;
31 
32   G_MISS_TOKEN_TBL token_tbl;
33 
34   PROCEDURE cto_message ( p_appln_short_name 	IN VARCHAR2,
35 			  p_message 		IN VARCHAR2,
36 			  p_token		IN CTO_MSG_PUB.token_tbl default CTO_MSG_PUB.G_MISS_TOKEN_TBL);
37 
38 
39   PROCEDURE count_and_get ( p_msg_count  OUT NOCOPY NUMBER,
40 			    p_msg_data   OUT NOCOPY VARCHAR2 );
41 
42 
43 END CTO_MSG_PUB;