DBA Data[Home] [Help]

PACKAGE: APPS.PO_DELREC_PVT

Source


1 PACKAGE PO_DELREC_PVT AUTHID CURRENT_USER AS
2 /* $Header: POXVDRDS.pls 115.0 2003/07/07 16:56:09 dxie noship $ */
3 
4 
5 -------------------------------------------------------------------------------
6 --Start of Comments
7 --Name: create_update_delrec
8 --Pre-reqs:
9 --  None.
10 --Modifies:
11 --  None.
12 --Locks:
13 --  None.
14 --Function:
15 --  Call FTE's API to create delivery record for Standard Purchase Order
16 --  and Blanket Release
17 --Parameters:
18 --IN:
19 --p_api_version
20 --  Specifies API version.
21 --p_action
22 --  Specifies doc control action.
23 --p_doc_type
24 --  Differentiates between the doc being a PO or Release.
25 --p_doc_subtype
26 --  Specifies Standard PO or Blanket Release.
27 --p_doc_id
28 --  Corresponding to po_header_id or po_release_id.
29 --p_line_id
30 --  Corresponding to po_line_id
31 --p_line_location_id
32 --  Corresponding to po_line_location_id
33 --IN OUT:
34 --x_return_status
35 --  Indicates API return status as 'S', 'E' or 'U'.
36 --x_msg_count
37 --  Error messages number.
38 --x_msg_data
39 --  Error messages body.
40 --Testing:
41 --  Need to integrate FTE to implement the testing.
42 --End of Comments
43 -------------------------------------------------------------------------------
44 
45 PROCEDURE create_update_delrec
46 (
47     p_api_version      IN               NUMBER,
48     x_return_status    IN OUT NOCOPY    VARCHAR2,
49     x_msg_count        IN OUT NOCOPY    NUMBER,
50     x_msg_data         IN OUT NOCOPY    VARCHAR2,
51     p_action           IN               VARCHAR2,
52     p_doc_type         IN               VARCHAR2,
53     p_doc_subtype      IN               VARCHAR2,
54     p_doc_id           IN               NUMBER,
55     p_line_id          IN               NUMBER,
56     p_line_location_id IN               NUMBER
57 );
58 
59 END PO_DELREC_PVT;