DBA Data[Home] [Help]

PACKAGE: APPS.FA_XLA_ACCOUNTING_MAIN_PKG

Source


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