DBA Data[Home] [Help]

PACKAGE: APPS.AP_WEB_CC_UPGRADE_PKG

Source


1 PACKAGE AP_WEB_CC_UPGRADE_PKG AUTHID CURRENT_USER AS
2 /* $Header: apwccups.pls 120.0.12010000.4 2009/12/14 12:47:20 meesubra noship $ */
3 
4 
5 --
6 -- Procedure : Upgrade_Cards
7 -- Purpose   : Successful upgrade for a card signifies encryption of a card number,
8 -- 	       Cardmember Name, and Expiration Date using Oracle Payments api
9 --	       and updating with correct reference of card_reference_id in ap_cards_all.
10 
11 PROCEDURE Upgrade_Cards
12   (x_errbuf      OUT NOCOPY VARCHAR2,
13    x_retcode     OUT NOCOPY VARCHAR2,
14    x_batch_size  IN NUMBER,
15    x_worker_id   IN NUMBER,
16    x_num_workers IN NUMBER,
17    x_script_name IN VARCHAR2
18   );
19 
20 --
21 -- Procedure : Upgrade_Trxns
22 -- Purpose   : For the cards which were successfully migrated during R12 and PADSS, update
23 --             ap_credit_card_trxns_all for those card numbers.
24 
25 PROCEDURE Upgrade_Trxns
26   (x_errbuf      OUT NOCOPY VARCHAR2,
27    x_retcode     OUT NOCOPY VARCHAR2,
28    x_batch_size  IN NUMBER,
29    x_worker_id   IN NUMBER,
30    x_num_workers IN NUMBER,
31    x_script_name IN VARCHAR2
32   );
33 
34 --
35 -- Procedure : Upgrade_Cards_Manager
36 -- Purpose   : To initiate the Upgrade_Cards in a parallel mode
37 --
38 
39 PROCEDURE Upgrade_Cards_Manager
40   (x_errbuf      OUT NOCOPY VARCHAR2,
41    x_retcode     OUT NOCOPY VARCHAR2,
42    x_batch_size  IN NUMBER,
43    x_num_workers IN NUMBER,
44    x_script_name IN VARCHAR2
45   );
46 
47 --
48 -- Procedure : Upgrade_Trxns_Manager
49 -- Purpose   : To initiate the Upgrade_Trxns in a parallel mode
50 --
51 
52 PROCEDURE Upgrade_Trxns_Manager
53   (x_errbuf      OUT NOCOPY VARCHAR2,
54    x_retcode     OUT NOCOPY VARCHAR2,
55    x_batch_size  IN NUMBER,
56    x_num_workers IN NUMBER,
57    x_script_name IN VARCHAR2
58   );
59 
60 
61 END AP_WEB_CC_UPGRADE_PKG;