DBA Data[Home] [Help]

PACKAGE: APPS.AP_VENDOR_PARTY_MERGE_PKG

Source


1 PACKAGE AP_VENDOR_PARTY_MERGE_PKG AS
2 /* $Header: apvdmrgs.pls 120.2.12010000.2 2008/12/22 13:29:38 manjayar ship $ */
3 
4 -- Bug 5641382. Added the default parameter.
5 PROCEDURE Other_Products_VendorMerge(v_dup_vendor_id IN NUMBER DEFAULT NULL);
6 
7 -- Bug 7297864. introduced to resolve contact disappearing issue after supplier merge.
8 PROCEDURE AP_TCA_Contact_Merge (
9 p_from_party_site_id           IN  NUMBER,
10 p_to_party_site_id             IN  NUMBER,
11 p_from_per_party_id	       IN  NUMBER,
12 p_to_org_party_id	       IN  NUMBER,
13 x_return_status                OUT NOCOPY VARCHAR2,
14 x_msg_count		       OUT NOCOPY NUMBER,
15 x_msg_data		       OUT NOCOPY VARCHAR2
16 );
17 
18 END AP_VENDOR_PARTY_MERGE_PKG;