DBA Data[Home] [Help]

PACKAGE: APPS.ARP_TRX_GLOBAL

Source


1 PACKAGE arp_trx_global AUTHID CURRENT_USER AS
2 /* $Header: ARTUGBLS.pls 120.3 2006/05/31 18:12:31 mraymond noship $ */
3 
4 -- This record holds general information used by autoaccounting and
5 -- credit memo module.  Passed as argument to most functions/procs.
6 --
7 TYPE system_info_rec_type IS RECORD
8 (
9     system_parameters     arp_global.sysparam%type,
10     chart_of_accounts_id  gl_sets_of_books.chart_of_accounts_id%type,
11     period_set_name       gl_sets_of_books.period_set_name%type,
12     base_currency         fnd_currencies.currency_code%type,
13     base_precision        fnd_currencies.precision%type,
14     base_min_acc_unit     fnd_currencies.minimum_accountable_unit%type,
15     rev_based_on_salesrep               BOOLEAN,
16     tax_based_on_salesrep               BOOLEAN,
17     unbill_based_on_salesrep            BOOLEAN,
18     unearn_based_on_salesrep            BOOLEAN,
19     suspense_based_on_salesrep          BOOLEAN,
20     msg_level				BINARY_INTEGER
21 );
22 
23 system_info system_info_rec_type;
24 
25 --
26 -- This record holds profile information used by autoaccounting and
27 -- credit memo module.  Passed as argument to most functions/procs.
28 --
29 TYPE profile_rec_type IS RECORD
30 (
31     application_id              BINARY_INTEGER,
32     conc_login_id               BINARY_INTEGER,
33     conc_program_id             BINARY_INTEGER,
34     user_id                     BINARY_INTEGER,
35     request_id			BINARY_INTEGER,
36     use_inv_acct_for_cm_flag    VARCHAR2(240),
37     so_organization_id          VARCHAR2(240)
38 );
39 
40 profile_info profile_rec_type;
41 
42 --
43 -- This record holds accounting flexfield information used by
44 -- autoaccounting and the credit memo module.  Passed as argument to
45 -- most functions/procs.
46 --
47 TYPE acct_flex_info_rec_type IS RECORD
48 (
49     number_segments     BINARY_INTEGER,
50     delim               VARCHAR2(1)
51 );
52 
53 flex_info acct_flex_info_rec_type;
54 --begin anuj
55 /* Multi-Org Access Control Changes for SSA;Begin;anukumar;11/01/2002*/
56 Procedure init;
57 /* Multi-Org Access Control Changes for SSA;Begin;anukumar;11/01/2002*/
58 --end anuj
59 
60 END arp_trx_global;