DBA Data[Home] [Help]

PACKAGE BODY: APPS.ECE_POO_X

Source


1 PACKAGE BODY ece_poo_x AS
2 -- $Header: ECEPOOXB.pls 115.3 2003/11/03 12:27:25 arsriniv ship $
3 
4 /* -----------------------------------------------------------------------
5 REM
6 REM	PROCEDURE POPULATE_EXT_HEADER
7 REM		This procedure can be modified by the user to utilize the EDI
8 REM		Extension Tables
9 REM
10 REM ------------------------------------------------------------------------
11 */
12 
13    PROCEDURE populate_ext_header(
14       l_fkey      IN NUMBER,
15       l_plsql_tbl IN OUT NOCOPY ece_flatfile_pvt.interface_tbl_type) IS
16 
17       BEGIN
18 
19          NULL;
20 
21       END populate_ext_header;
22 
23 /* -----------------------------------------------------------------------
24 REM
25 REM	PROCEDURE POPULATE_EXT_LINE
26 REM		This procedure can be modified by the user to utilize the EDI
27 REM		Extension Tables
28 REM
29 REM ------------------------------------------------------------------------
30 */
31 
32    PROCEDURE populate_ext_line(
33       l_fkey      IN NUMBER,
34       l_plsql_tbl IN OUT NOCOPY ece_flatfile_pvt.interface_tbl_type) IS
35 
36       BEGIN
37 
38          NULL;
39 
40       END populate_ext_line;
41 
42 /* -----------------------------------------------------------------------
43 REM
44 REM	PROCEDURE POPULATE_EXT_SHIPMENT
45 REM		This procedure can be modified by the user to utilize the EDI
46 REM		Extension Tables
47 REM
48 REM ------------------------------------------------------------------------
49 */
50 
51    PROCEDURE populate_ext_shipment(
52       l_fkey      IN NUMBER,
53       l_plsql_tbl IN OUT NOCOPY ece_flatfile_pvt.interface_tbl_type) IS
54 
55       BEGIN
56 
57          NULL;
58 
59       END populate_ext_shipment;
60 
61    PROCEDURE populate_ext_project(
62       l_fkey      IN NUMBER,
63       l_plsql_tbl IN OUT NOCOPY ece_flatfile_pvt.interface_tbl_type) IS
64 
65       BEGIN
66 
67          NULL;
68 
69       END populate_ext_project;
70 
71 END ece_poo_x;
72