DBA Data[Home] [Help]

PACKAGE: APPS.PO_FTE_INTEGRATION_PVT

Source


1 PACKAGE PO_FTE_INTEGRATION_PVT AUTHID CURRENT_USER AS
2 /* $Header: POXVFTES.pls 115.0 2003/08/16 01:49:21 dxie noship $ */
3 
4 
5 -------------------------------------------------------------------------------
6 --Start of Comments
7 --Name: get_po_release_attributes
8 --Pre-reqs:
9 --  None.
10 --Modifies:
11 --  None.
12 --Locks:
13 --  None.
14 --Function:
15 --  Get attributes of Standard Purchase Order and Blanket Release for
16 --  Transportation delivery record.
17 --Parameters:
18 --IN:
19 --p_api_version
20 --  Specifies API version.
21 --p_line_location_id
22 --  Corresponding to po_line_location_id
23 --OUT:
24 --x_return_status
25 --  Indicates API return status as 'S', 'E' or 'U'.
26 --x_msg_count
27 --  Error messages number.
28 --x_msg_data
29 --  Error messages body.
30 --x_po_release_attributes
31 --Testing:
32 --  Call this API when only line_location_id exists.
33 --End of Comments
34 -------------------------------------------------------------------------------
35 
36 
37 PROCEDURE get_po_release_attributes(
38     p_api_version            IN         NUMBER,
39     x_return_status          OUT NOCOPY VARCHAR2,
40     x_msg_count              OUT NOCOPY NUMBER,
41     x_msg_data               OUT NOCOPY VARCHAR2,
42     p_line_location_id       IN         NUMBER,
43     x_po_releases_attributes OUT NOCOPY PO_FTE_INTEGRATION_GRP.po_release_rec_type
44 );
45 
46 
47 END PO_FTE_INTEGRATION_PVT;