DBA Data[Home] [Help]

PACKAGE: APPS.HZ_MGD_MASS_UPDATE_MEDIATOR

Source


1 PACKAGE HZ_MGD_MASS_UPDATE_MEDIATOR AUTHID CURRENT_USER AS
2 /* $Header: ARHCMUMS.pls 120.2 2005/06/30 04:46:39 bdhotkar noship $*/
3 /*+=======================================================================+
4 --|               Copyright (c) 1998 Oracle Corporation                   |
5 --|                       Redwood Shores, CA, USA                         |
6 --|                         All rights reserved.                          |
7 --+=======================================================================+
8 --| FILENAME                                                              |
9 --|    ARHCMUMS.pls                                                       |
10 --|                                                                       |
11 --| DESCRIPTION                                                           |
12 --|     Specification of the package HZ_MGD_MASS_UPDATE_MEDIATOR          |
13 --|                                                                       |
14 --| PROCEDURE LIST                                                        |
15 --|     Mass_Update_Usage_Rules                                           |
16 --|                                                                       |
17 --| HISTORY                                                               |
18 --|     05/14/2002 tsimmond    Created                                    |
19 --|     11/27/2002 tsimmond    Updated   Added WHENEVER OSERROR EXIT      |
20 --|                                      FAILURE ROLLBACK                 |
21 --|                                                                       |
22 --+======================================================================*/
23 
24 
25 --===================
26 -- CONSTANTS
27 --===================
28 G_PKG_NAME CONSTANT VARCHAR2(30) := 'HZ_MGD_MASS_UPDATE_MEDIATOR';
29 
30 --===================
31 -- GLOBAL VARIABLES
32 --===================
33 
34 --========================================================================
35 -- PROCEDURE : Mass_Update_Usage_Rules  PUBLIC
36 -- PARAMETERS: p_profile_class_id     Profile Class ID
37 --             p_currency_code        Currency Code
38 --             p_profile_class_amount_id
39 --             x_errbuf               error buffer
40 --             x_retcode              0 success, 1 warning, 2 error
41 --
42 -- COMMENT   : This is the concurrent program for Mass update credit usages
43 --
44 --========================================================================
45 PROCEDURE Mass_Update_Usage_Rules
46 ( p_profile_class_id  IN  NUMBER
47 , p_currency_code     IN  VARCHAR2
48 , p_profile_class_amount_id IN NUMBER
49 , x_errbuf            OUT NOCOPY  VARCHAR2
50 , x_retcode           OUT NOCOPY VARCHAR2
51 );
52 
53 END HZ_MGD_MASS_UPDATE_MEDIATOR;