DBA Data[Home] [Help]

PACKAGE BODY: APPS.AR_CMGT_INTEG_PKG

Source


1 PACKAGE BODY AR_CMGT_INTEG_PKG  AS
2 /* $Header: ARCMINTB.pls 115.5 2003/10/07 22:24:54 apandit noship $ */
3 
4 
5 /*========================================================================
6  | PUBLIC FUNCTION credit_summary_data_exists
7  |
8  | DESCRIPTION
9  |     This function verifies the existence of credit
10  |     summary data for a fiven party/account/site in credit management.
11  |
12  | PSEUDO CODE/LOGIC
13  |
14  |
15  | KNOWN ISSUES
16  |
17  | NOTES
18  |      Any interesting aspect of the code in the package body which needs
19  |      to be stated.
20  |
21  *=======================================================================*/
22 FUNCTION credit_summary_data_exists
23              ( p_party_id         IN NUMBER  ,
24                p_cust_account_id  IN NUMBER  ,
25                p_site_use_id      IN  NUMBER )
26    RETURN  VARCHAR2 IS
27 l_return   VARCHAR2(1);
28 BEGIN
29 
30  l_return :=  AR_CMGT_UTIL.check_casefolder_exists(p_party_id,
31                                      nvl(p_cust_account_id,-99),
32                                      nvl(p_site_use_id,-99));
33  RETURN l_return;
34 
35 END credit_summary_data_exists;
36 
37 END AR_CMGT_INTEG_PKG;