DBA Data[Home] [Help]

PACKAGE: APPS.XDP_INSTALL_BASE

Source


1 PACKAGE XDP_INSTALL_BASE AUTHID CURRENT_USER AS
2 /* $Header: XDPIBINS.pls 120.1 2005/06/08 23:52:56 appldev  $ */
3 
4 
5 -- Start of comments
6 --      API name        : XDP_INSTALL_BASE
7 --      Type            : Private
8 --      Function        : An API to integrate SFM with Install Base
9 --      Pre-reqs        : None.
10 --      Parameters      :
11 --
12 --      IN              :
13 --                              p_order_id:               NUMBER        Required
14 --                                      The Order Id for the Order to be processed
15 --                              p_line_id:                NUMBER        Required
16 --                                      The Line Id for the line in the Order to be processed
17 --      OUT             :
18 --                              p_error_code:             NUMBER
19 --                                      The code of the error encountered
20 --
21 --      OUT             :
22 --                              p_error_description:             VARCHAR2
23 --                                      The description of the error encountered
24 --
25 --      Version : Current version       11.5
26 --      Notes   :
27 --              This API is used for the Integration between Service Fulfillment Manager
28 --              and Installed Base
29 --
30 -- End of comments
31 
32 PROCEDURE UPDATE_IB(p_order_id IN NUMBER,
33 		    p_line_id  IN NUMBER,
34                     p_error_code IN OUT NOCOPY NUMBER,
35                     p_error_description OUT NOCOPY VARCHAR2);
36 
37 END XDP_INSTALL_BASE;