DBA Data[Home] [Help]

PACKAGE: APPS.XLA_MULTIPERIOD_ACCOUNTING_PKG

Source


1 PACKAGE xla_multiperiod_accounting_pkg AUTHID CURRENT_USER AS
2 -- $Header: xlampaac.pkh 120.1 2006/03/29 07:24:38 vkasina noship $
3 /*===========================================================================+
4 |             Copyright (c) 2005 Oracle Corporation                          |
5 |                       Redwood Shores, CA, USA                              |
6 |                         All rights reserved.                               |
7 +============================================================================+
8 | PACKAGE NAME                                                               |
9 |     xla_multiperiod_accounting_pkg                                         |
10 |                                                                            |
11 | DESCRIPTION                                                                |
12 |     Package specification for the multiperiod accounting prgram.           |
13 |                                                                            |
14 | HISTORY                                                                    |
15 |     05/23/2002    eklau             Created                                |
16 +===========================================================================*/
17 
18 --============================================================================
19 --
20 --  API which completes incomplete recognition journal entries and
21 --  accrual reversal journal entries.
22 --
23 --============================================================================
24 PROCEDURE complete_journal_entries
25        (p_application_id             IN  NUMBER
26        ,p_ledger_id                  IN  NUMBER
27        ,p_process_category_code      IN  VARCHAR2
28        ,p_end_date                   IN  DATE
29        ,p_errors_only_flag           IN  VARCHAR2
30        ,p_transfer_to_gl_flag        IN  VARCHAR2
31        ,p_post_in_gl_flag            IN  VARCHAR2
32        ,p_gl_batch_name              IN  VARCHAR2
33        ,p_valuation_method_code      IN  VARCHAR2
34        ,p_security_id_int_1          IN  NUMBER
35        ,p_security_id_int_2          IN  NUMBER
36        ,p_security_id_int_3          IN  NUMBER
37        ,p_security_id_char_1         IN  VARCHAR2
38        ,p_security_id_char_2         IN  VARCHAR2
39        ,p_security_id_char_3         IN  VARCHAR2
40        ,p_accounting_batch_id        OUT NOCOPY NUMBER
41        ,p_errbuf                     OUT NOCOPY VARCHAR2
42        ,p_retcode                    OUT NOCOPY NUMBER);
43 
44 END xla_multiperiod_accounting_pkg; -- end of package spec.