DBA Data[Home] [Help]

PACKAGE: APPS.IGI_XLA_ACCOUNTING_MAIN_PKG

Source


1 PACKAGE IGI_XLA_ACCOUNTING_MAIN_PKG AUTHID CURRENT_USER AS
2 /* $Header: igixlahs.pls 120.0.12000000.1 2007/09/03 07:57:20 npandya noship $ */
3 --------------------------------------------------------------------------------
4 --
5 -- pre-processing -
6 --
7 --------------------------------------------------------------------------------
8 
9 PROCEDURE preaccounting
10    (p_application_id     IN number,
11     p_ledger_id          IN number,
12     p_process_category   IN varchar2,
13     p_end_date           IN date,
14     p_accounting_mode    IN varchar2,
15     p_valuation_method   IN varchar2,
16     p_security_id_int_1  IN number,
17     p_security_id_int_2  IN number,
18     p_security_id_int_3  IN number,
19     p_security_id_char_1 IN varchar2,
20     p_security_id_char_2 IN varchar2,
21     p_security_id_char_3 IN varchar2,
22     p_report_request_id  IN number);
23 
24 --------------------------------------------------------------------------------
25 --
26 -- extract-processing - used to extract all accounting for the events
27 --
28 --------------------------------------------------------------------------------
29 
30 PROCEDURE extract
31    (p_application_id     IN number,
32     p_accounting_mode    IN varchar2);
33 
34 ----------------------------------------------------------------------------------
35 -- post-accounting
36 --
37 --------------------------------------------------------------------------------
38 
39 PROCEDURE postaccounting
40    (p_application_id     IN number,
41     p_ledger_id          IN number,
42     p_process_category   IN varchar2,
43     p_end_date           IN date,
44     p_accounting_mode    IN varchar2,
45     p_valuation_method   IN varchar2,
46     p_security_id_int_1  IN number,
47     p_security_id_int_2  IN number,
48     p_security_id_int_3  IN number,
49     p_security_id_char_1 IN varchar2,
50     p_security_id_char_2 IN varchar2,
51     p_security_id_char_3 IN varchar2,
52     p_report_request_id  IN number);
53 
54 ----------------------------------------------------------------------------------
55 -- post-processing
56 --
57 --------------------------------------------------------------------------------
58 
59 PROCEDURE postprocessing
60    (p_application_id     IN number,
61     p_accounting_mode    IN varchar2);
62 
63 
64 --------------------------------------------------------------------------------
65 
66 END IGI_XLA_ACCOUNTING_MAIN_PKG;