DBA Data[Home] [Help]

PACKAGE: APPS.GL_TAX_CODES_PKG

Source


1 PACKAGE GL_TAX_CODES_PKG AS
2 /*  $Header: glisttcs.pls 120.3 2005/05/05 01:27:55 kvora ship $  */
3 --
4 -- Package
5 --   GL_TAX_CODES_PKG
6 -- Purpose
7 --   To create GL_TAX_CODES_PKG package.
8 -- History
9 --   06-DEC-96	D J Ogg		Created
10 
11   --
12   -- Procedure
13   --   select_columns
14   -- Purpose
15   --   Used to select the tax_code for a given tax_code_id
16   -- History
17   --   06-DEC-96  D. J. Ogg    Created
18   -- Arguments
19   --   x_tax_code_id			Id of desired tax code
20   --   x_tax_type_code			Type of desired tax code
21   --   x_tax_code			Name of desired tax code
22   -- Example
23   --   gl_tax_codes_pkg.select_columns(12, tax_code);
24   -- Notes
25   --
26   PROCEDURE select_columns(
27 			x_tax_code_id				NUMBER,
28 			x_tax_type_code				VARCHAR2,
29 			x_tax_code			IN OUT NOCOPY	VARCHAR2);
30 
31 
32 END GL_TAX_CODES_PKG;