DBA Data[Home] [Help]

PACKAGE: APPS.AML_FIND_PARTY_MATCH_PVT

Source


1 PACKAGE aml_find_party_match_pvt AUTHID CURRENT_USER as
2 /* $Header: amlvcpms.pls 115.1 2004/03/04 06:10:25 aanjaria noship $ */
3 
4 -- Start of Comments
5 -- Package name     : aml_find_party_match_pvt
6 -- NOTE             : This is a custom program that contains user logic.
7 --                    This program should be used as a template and customers
8 --                    can modify the code for their filtering/validations.
9 --
10 --                    This program will be invoked by lead import program
11 --                    for each record before processing the import record
12 --                    through DQM. Execution of this program is controlled
13 --                    by profile 'OS: Execute custom code from lead import'.
14 --
15 -- End of Comments
16 
17 PROCEDURE main (imp             IN  OUT NOCOPY as_import_interface%rowtype,
18                 x_return_status OUT NOCOPY varchar2);
19 
20 END aml_find_party_match_pvt;