[Home] [Help]
PACKAGE: APPS.FA_XLA_EXTRACT_UTIL_PKG
Source
1 PACKAGE fa_xla_extract_util_pkg AUTHID CURRENT_USER AS
2 /* $Header: FAXLAXUS.pls 120.8 2011/02/02 19:14:57 skchawla ship $ */
3
4
5
6 ----------------------------------------------------------------------------------
7 -- Global Variables - public to stub programs
8 --
9 --------------------------------------------------------------------------------
10 G_trx_exists boolean := false;
11 G_inter_trx_exists boolean := false;
12 G_dep_exists boolean := false;
13 G_def_exists boolean := false;
14
15 G_fin_trx_exists boolean := false;
16 G_xfr_trx_exists boolean := false;
17 G_dist_trx_exists boolean := false;
18 G_ret_trx_exists boolean := false;
19 G_res_trx_exists boolean := false;
20 G_deprn_exists boolean := false;
21 G_rollback_deprn_exists boolean := false;
22
23 G_alc_enabled boolean := false;
24 G_group_enabled boolean := false;
25 G_sorp_enabled boolean := false;
26 G_secondary_special boolean := false;
27
28 --------------------------------------------------------------------------------
29 --
30 -- Main Locking program
31 -- This is the stub called from the locking_status subscription routine
32 --
33 --------------------------------------------------------------------------------
34
35 PROCEDURE lock_assets
36 (p_book_type_code varchar2,
37 p_ledger_id number);
38
39 --------------------------------------------------------------------------------
40 --
41 -- Main UnLocking program
42 -- This is the stub called from the locking_status subscription routine
43 --
44 --------------------------------------------------------------------------------
45
46 PROCEDURE unlock_assets
47 (p_book_type_code varchar2,
48 p_ledger_id number);
49
50
51 --------------------------------------------------------------------------------
52 --
53 -- Main nonaccountable events program
54 -- This is the stub called from the preaccounting subscription routine
55 --
56 --------------------------------------------------------------------------------
57
58 PROCEDURE update_nonaccountable_events
59 (p_book_type_code varchar2,
60 p_process_category varchar2,
61 p_ledger_id number);
62
63 --------------------------------------------------------------------------------
64 --
65 -- Main Extraction program
66 -- This is the stub called from the extract_status subscription routine
67 --
68 --------------------------------------------------------------------------------
69
70 PROCEDURE extract (p_accounting_mode IN VARCHAR2);
71
72 --------------------------------------------------------------------------------
73
74 END fa_xla_extract_util_pkg;