DBA Data[Home] [Help]

PACKAGE: APPS.ECE_POCO_X

Source


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