DBA Data[Home] [Help]

PACKAGE: APPS.CSP_CMERGE_BB2

Source


1 PACKAGE CSP_CMERGE_BB2 AUTHID CURRENT_USER as
2 /* $Header: cscm102s.pls 115.2 2003/04/11 10:55:37 axsubram ship $ */
3 
4 /* This is the main block for merging the cs_customer_products table.
5    This block calls a merge procedure that in turns call the procedures that will
6    perform the update on cs_customer_products. The call sequence is
7    listed below.
8 
9                ---CSP_CMERGE_BB2.MERGE ( table cs_customer_products )
10                              |
11                               CS_MERGE_BILL_TO_SITE_ID
12 			      CS_MERGE_INSTALL_SITE_ID
13                               CS_MERGE_SHIP_TO_SITE_ID
14 			      CS_MERGE_ORDER_BILL_TO_SITE_ID
15       			      CS_MERGE_ORDER_SHIP_TO_SITE_ID
16                               CS_MERGE_CUSTOMER_ID
17                               CS_CHECK_MERGE_DATA
18 
19                       								    */
20 
21   PROCEDURE MERGE ( req_id       IN NUMBER,
22                     set_number   IN NUMBER,
23                     process_mode IN VARCHAR2 );
24 
25   END CSP_CMERGE_BB2;