DBA Data[Home] [Help]

PACKAGE: APPS.OE_CREDIT_CHECK_CP

Source


1 PACKAGE OE_CREDIT_CHECK_CP AUTHID CURRENT_USER AS
2 -- $Header: OEXCCRCS.pls 120.1 2005/10/17 22:30:42 spooruli noship $
3 
4 --+=======================================================================+
5 --|               Copyright (c) 1998 Oracle Corporation                   |
6 --|                       Redwood Shores, CA, USA                         |
7 --|                         All rights reserved.                          |
8 --+=======================================================================+
9 --| FILENAME                                                              |
10 --|    OEXCCRCS.pls                                                       |
11 --|                                                                       |
12 --| DESCRIPTION                                                           |
13 --|    Specification of OE_CREDIT_CHECK_CP                                |
14 --|                                                                       |
15 --| HISTORY                                                               |
16 --|     08/10/2001 Rene Schaub     Created                                |
17 --|     03/25/2002 Vanessa To      Added Purge_External_Exposure procedure|
18 --+======================================================================*/
19 
20 --===================
21 -- CONSTANTS
22 --===================
23 
24 --========================================================================
25 -- PROCEDURE : Init_Summary_Table     PUBLIC
26 -- PARAMETERS: x_retcode              0 success, 1 warning, 2 error
27 --             x_errbuf               error buffer
28 --             p_lock_tables          'Y' or 'N' for all transaction tables
29 --
30 --=======================================================================--
31 PROCEDURE  Init_Summary_Table
32 ( x_retcode        OUT NOCOPY /* file.sql.39 change */ VARCHAR2
33 , x_errbuf         OUT NOCOPY /* file.sql.39 change */ VARCHAR2
34 , p_lock_tables    IN  VARCHAR2  DEFAULT  'N'
35 );
36 
37 --========================================================================
38 -- PROCEDURE : Purge_External_Exposure     PUBLIC
39 -- PARAMETERS: x_retcode              0 success, 1 warning, 2 error
40 --             x_errbuf               error buffer
41 --             p_exposure_source_code user defined exposure source code
42 --
43 --=======================================================================--
44 
45 PROCEDURE Purge_External_Exposure
46 ( x_retcode                OUT NOCOPY /* file.sql.39 change */ VARCHAR2
47 , x_errbuf                 OUT NOCOPY /* file.sql.39 change */ VARCHAR2
48   /* Moac */
49 , p_org_id                 IN  NUMBER
50 , p_exposure_source_code   IN  VARCHAR2
51 );
52 
53 END OE_CREDIT_CHECK_CP;