DBA Data[Home] [Help]

PACKAGE: APPS.ECE_INO_X

Source


1 PACKAGE ECE_INO_X AUTHID CURRENT_USER AS
2 -- $Header: ECEINOXS.pls 120.1 2005/06/30 11:21:28 appldev ship $
3 /*#
4  * This package contains routines to populate additonal columns for
5  * 810/Invoic  Invoice Outbound (INO) flat file.
6  * @rep:scope internal
7  * @rep:product EC
8  * @rep:lifecycle active
9  * @rep:displayname Outbound Invoice (INO) Extensible Architecture
10  * @rep:compatibility S
11  * @rep:category BUSINESS_ENTITY AR_INVOICE
12  */
13 /*#
14  * This procedure can be used to populate additional data
15  * in  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 Invoice (INO) Header with Additional Columns
21  * @rep:compatibility S
22  */
23 
24 Procedure populate_extension_header(l_fkey  	IN NUMBER,
25 				   l_plsql_tbl  IN ece_flatfile_pvt.Interface_tbl_type);
26 /*#
27  * This procedure can be used to populate additional data
28  * in  Header 1 level.This procedure can be modified by the user to utilize
29  * the EDI Extension Tables.
30  * @param  l_fkey  Transaction record ID
31  * @param  l_plsql_tbl PL/SQL Table
32  * @rep:lifecycle active
33  * @rep:displayname Populate Outbound Invoice (INO) Header1 with Additional Columns
34  * @rep:compatibility S
35  */
36 
37 Procedure populate_extension_header_1(l_fkey        IN NUMBER,
38                                    l_plsql_tbl  IN ece_flatfile_pvt.Interface_tbl_type);
39 /*#
40  * This procedure can be used to populate additional data
41  * in  Line level.This procedure can be modified by the user to utilize
42  * the EDI Extension Tables.
43  * @param  l_fkey  Transaction Record ID
44  * @param  l_plsql_tbl PL/SQL Table
45  * @rep:lifecycle active
46  * @rep:displayname Populate Outbound Invoice (INO) Line with Additional Columns
47  * @rep:compatibility S
48  */
49 
50 Procedure populate_extension_line(l_fkey  	IN NUMBER,
51 				   l_plsql_tbl  IN ece_flatfile_pvt.Interface_tbl_type);
52 /*#
53  * This procedure can be used to populate additional data
54  * in  Line Tax level.This procedure can be modified by the user to utilize
55  * the EDI Extension Tables.
56  * @param  l_fkey  Transaction Record ID
57  * @param  l_plsql_tbl PL/SQL Table
58  * @rep:lifecycle active
59  * @rep:displayname Populate Outbound Invoice (INO) Line Tax with Additional Columns
60  * @rep:compatibility S
61  */
62 
63 Procedure populate_extension_line_tax(l_fkey  	IN NUMBER,
64 				   l_plsql_tbl  IN ece_flatfile_pvt.Interface_tbl_type);
65 
66 
67 end ECE_INO_X;