DBA Data[Home] [Help]

PACKAGE: APPS.ECE_POO_X

Source


1 PACKAGE ece_poo_x AS
2 -- $Header: ECEPOOXS.pls 120.1 2005/06/30 11:22:19 appldev ship $
3 /*#
4  * This package contains routines to populate additonal columns for the
5  * 850/ORDERS Purchase Order Outbound (POO) flat file.
6  * @rep:scope internal
7  * @rep:product EC
8  * @rep:lifecycle active
9  * @rep:displayname Outbound PO (POO) Extensible Architecture
10  * @rep:compatibility S
11  * @rep:category BUSINESS_ENTITY PO_STANDARD_PURCHASE_ORDER
12  */
13 
14 /*#
15  * This procedure can be used to populate additional data
16  * in Purchasing Header level.This procedure can be modified by the user to utilize
17  * the EDI Extension Tables.
18  * @param  l_fkey  Transaction Record ID
19  * @param  l_plsql_tbl PL/SQL Table
20  * @rep:lifecycle active
21  * @rep:displayname Populate Outbound PO (POO) Header with Additional Columns
22  * @rep:compatibility S
23  */
24 
25    PROCEDURE populate_ext_header(
26       l_fkey      IN NUMBER,
27 		l_plsql_tbl IN OUT NOCOPY ece_flatfile_pvt.interface_tbl_type);
28 /*#
29  * This procedure can be used to populate additional data
30  * in Purchasing Line level.This procedure can be modified by the user to utilize
31  * the EDI Extension Tables.
32  * @param  l_fkey  Transaction Record ID
33  * @param  l_plsql_tbl PL/SQL Table
34  * @rep:lifecycle active
35  * @rep:displayname Populate Outbound PO (POO) Line with Additional Columns
36  * @rep:compatibility S
37  */
38 
39    PROCEDURE populate_ext_line(
40       l_fkey      IN NUMBER,
41 		l_plsql_tbl IN OUT NOCOPY ece_flatfile_pvt.interface_tbl_type);
42 /*#
43  * This procedure can be used to populate additional data
44  * in Purchasing Shipment level.This procedure can be modified by the user to utilize
45  * the EDI Extension Tables.
46  * @param  l_fkey  Transaction Record ID
47  * @param  l_plsql_tbl PL/SQL Table
48  * @rep:lifecycle active
49  * @rep:displayname Populate Outbound PO (POO) Shipment with Additional Columns
50  * @rep:compatibility S
51  */
52 
53    PROCEDURE populate_ext_shipment(
54       l_fkey      IN NUMBER,
55 		l_plsql_tbl IN OUT NOCOPY ece_flatfile_pvt.interface_tbl_type);
56 /*#
57  * This procedure can be used to populate additional data
58  * in Purchasing Distribution level.This procedure can be modified by the user to utilize
59  * the EDI Extension Tables.
60  * @param  l_fkey  Transaction Record ID
61  * @param  l_plsql_tbl PL/SQL Table
62  * @rep:lifecycle active
63  * @rep:displayname Populate Outbound PO (POO) Distribution with Additional Columns
64  * @rep:compatibility S
65  */
66 
67    PROCEDURE populate_ext_project(
68       l_fkey      IN NUMBER,
69 		l_plsql_tbl IN OUT NOCOPY ece_flatfile_pvt.interface_tbl_type);
70 
71 END ece_poo_x;
72