DBA Data[Home] [Help]

PACKAGE: APPS.GL_JOURNAL_IMPORT_TAX_PKG

Source


1 PACKAGE GL_JOURNAL_IMPORT_TAX_PKG AS
2 /* $Header: glujitxs.pls 120.1 2005/05/05 01:40:42 kvora noship $ */
3 --
4 -- Name
5 --   gl_journal_import_tax_pkg
6 -- Purpose
7 --   to include all server side procedures and packages for
8 --   journal import taxes details processing
9 -- Notes
10 --
11 -- History
12 --   08/19/03	V Treiger	Created
13 --
14 --
15 -- Procedures
16 -- Name
17 --   Update_taxes
18 -- Purpose
19 --   wrapper to run procedure move_taxes_srs from SRS
20 -- Arguments
21 --   p_batch_name - Batch Name
22 PROCEDURE Update_taxes(errbuf OUT NOCOPY VARCHAR2,retcode OUT NOCOPY VARCHAR2,p_batch_name IN VARCHAR2);
23 --
24 --
25 -- Name
26 --  move_taxes_srs
27 -- Purpose
28 --   moves taxes details in SRS
29 -- Arguments
30 --   p_batch_id - Batch Id
31 PROCEDURE move_taxes_srs(p_batch_id IN NUMBER);
32 --
33 -- Name
34 --  move_taxes_hook
35 -- Purpose
36 --   moves taxes details in Journal Import hook
37 -- Arguments
38 --   p_batch_id - Batch Id
39 PROCEDURE move_taxes_hook(p_batch_id IN NUMBER);
40 -- Name
41 --   process_batch_list
42 -- Purpose
43 --   process separator delimited batch list by calling move_taxes
44 -- Arguments
45 --   batch_ids - List of Batch Ids
46 --   separator - Batch Id separator
47 PROCEDURE process_batch_list(p_batch_ids  IN VARCHAR2, p_separator  IN VARCHAR2);
48 END GL_JOURNAL_IMPORT_TAX_PKG;