DBA Data[Home] [Help]

PACKAGE: APPS.AR_CMGT_PARTY_SEARCH

Source


1 PACKAGE AR_CMGT_PARTY_SEARCH  AS
2 /*$Header: ARDQMSRS.pls 120.6 2006/03/17 12:31:47 kjoshi noship $ */
3 
4 /*=======================================================================+
5  |  Declare PUBLIC Data Types and Variables
6  +=======================================================================*/
7 
8 /*=======================================================================+
9  |  Declare PUBLIC Exceptions
10  +=======================================================================*/
11 
12 /*========================================================================
13  | PUBLIC PROCEDURE DQM_SEARCH
14  |
15  | DESCRIPTION
16  |      This procedure provides the cover routine for the call to the
17  |      DQM search engine.
18  |     This is used from the credit management search pages.
19  |
20  | PSEUDO CODE/LOGIC
21  |
22  | PARAMETERS
23  |      p_keyword             IN      The keyword on which search is to
24  |                                    be performed.
25  |      p_search_context_id   OUT NOCOPY     The unique id returned by DQM
26  |
27  | KNOWN ISSUES
28  |
29  | NOTES
30  |      Any interesting aspect of the code in the package body which needs
31  |      to be stated.
32  |
33  | MODIFICATION HISTORY
34  | Date                  Author            Description of Changes
35  | 06-AUG-2002           APANDIT            Created
36  | 12-MAY-2004           BSARKAR            Added 3 out parameter
37  *=======================================================================*/
38 PROCEDURE DQM_SEARCH(  p_keyword IN  VARCHAR2,
39                        p_dqm_param    IN  VARCHAR2,
40                        p_search_context_id OUT NOCOPY NUMBER,
41 		       p_return_status	   OUT NOCOPY VARCHAR2,
42 		       p_msg_count	   OUT NOCOPY NUMBER,
43 		       p_msg_data	   OUT NOCOPY VARCHAR2);
44 
45 END AR_CMGT_PARTY_SEARCH;