DBA Data[Home] [Help]

PACKAGE: APPS.GL_FEEDER_INFO_PKG

Source


1 PACKAGE gl_feeder_info_pkg AS
2 /* $Header: glapfps.pls 120.3.12010000.1 2008/07/28 13:21:17 appldev ship $ */
3 --
4 -- Package
5 --   gl_feeder_info_pkg
6 -- Purpose
7 --   To implement a dummy package that will overwrite by other product.
8 -- History
9 --   15-SEP-94	ERumanan	Created.
10 --
11 
12   --
13   -- Procedure
14   --   get_enc_id_and_name
15   -- Purpose
16   --   Gets encumbrance id and name
17   -- History
18   --   01-SEP-94  ERumanan  Created
19   -- Example
20   --   gl_feeder_info_pkg.get_enc_id_and_name( req_id, po_id, req_name,
21   --     po_name, oth_name );
22   -- Notes
23   --
24   PROCEDURE get_enc_id_and_name( x_req_id   IN OUT NOCOPY NUMBER,
25 	                         x_po_id    IN OUT NOCOPY NUMBER,
26 	                         x_req_name IN OUT NOCOPY VARCHAR2,
27                                  x_po_name  IN OUT NOCOPY VARCHAR2,
28 	                         x_oth_name IN OUT NOCOPY VARCHAR2);
29 
30 END gl_feeder_info_pkg;