DBA Data[Home] [Help]

PACKAGE: APPS.FA_XLA_EXTRACT_UTIL_PKG

Source


1 PACKAGE fa_xla_extract_util_pkg AS
2 /* $Header: FAXLAXUS.pls 120.4.12010000.1 2008/07/28 13:19:56 appldev 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 
25 --------------------------------------------------------------------------------
26 --
27 -- Main Locking program
28 --  This is the stub called from the locking_status subscription routine
29 --
30 --------------------------------------------------------------------------------
31 
32 PROCEDURE lock_assets
33             (p_book_type_code  varchar2);
34 
35 --------------------------------------------------------------------------------
36 --
37 -- Main UnLocking program
38 --  This is the stub called from the locking_status subscription routine
39 --
40 --------------------------------------------------------------------------------
41 
42 PROCEDURE unlock_assets
43             (p_book_type_code  varchar2);
44 
45 
46 --------------------------------------------------------------------------------
47 --
48 -- Main nonaccountable events program
49 --  This is the stub called from the preaccounting subscription routine
50 --
51 --------------------------------------------------------------------------------
52 
53 PROCEDURE update_nonaccountable_events
54               (p_book_type_code   varchar2,
55                p_process_category varchar2);
56 
57 --------------------------------------------------------------------------------
58 --
59 -- Main Extraction program
60 --  This is the stub called from the extract_status subscription routine
61 --
62 --------------------------------------------------------------------------------
63 
64 PROCEDURE extract (p_accounting_mode  IN VARCHAR2);
65 
66 --------------------------------------------------------------------------------
67 
68 END fa_xla_extract_util_pkg;