DBA Data[Home] [Help]

APPS.AR_MO_CACHE_UTILS dependencies on FND_CURRENCIES

Line 14: currency_code fnd_currencies.currency_code%TYPE,

10: ------------------------------------------------------------------ */
11: set_of_books_id gl_sets_of_books.set_of_books_id%TYPE,
12: set_of_books_name gl_sets_of_books.name%TYPE,
13: chart_of_accounts_id gl_sets_of_books.chart_of_accounts_id%TYPE,
14: currency_code fnd_currencies.currency_code%TYPE,
15: org_id ar_system_parameters.org_id%type,
16:
17: /* ----------------------------------------------------------------------
18: %TYPE

Line 83: base_precision fnd_currencies.precision%type,

79: populate_gl_segments_flag ar_system_parameters.populate_gl_segments_flag%type,
80: unallocated_revenue_ccid ar_system_parameters.unallocated_revenue_ccid%type,
81: period_set_name gl_sets_of_books.period_set_name%type,
82:
83: base_precision fnd_currencies.precision%type,
84: base_EXTENDED_PRECISION fnd_currencies.EXTENDED_PRECISION%type,
85: base_MIN_ACCOUNTABLE_UNIT fnd_currencies.MINIMUM_ACCOUNTABLE_UNIT%type,
86: salescredit_name ra_salesreps.name%type,
87: yes_meaning ar_lookups.meaning%type,

Line 84: base_EXTENDED_PRECISION fnd_currencies.EXTENDED_PRECISION%type,

80: unallocated_revenue_ccid ar_system_parameters.unallocated_revenue_ccid%type,
81: period_set_name gl_sets_of_books.period_set_name%type,
82:
83: base_precision fnd_currencies.precision%type,
84: base_EXTENDED_PRECISION fnd_currencies.EXTENDED_PRECISION%type,
85: base_MIN_ACCOUNTABLE_UNIT fnd_currencies.MINIMUM_ACCOUNTABLE_UNIT%type,
86: salescredit_name ra_salesreps.name%type,
87: yes_meaning ar_lookups.meaning%type,
88: no_meaning ar_lookups.meaning%type,

Line 85: base_MIN_ACCOUNTABLE_UNIT fnd_currencies.MINIMUM_ACCOUNTABLE_UNIT%type,

81: period_set_name gl_sets_of_books.period_set_name%type,
82:
83: base_precision fnd_currencies.precision%type,
84: base_EXTENDED_PRECISION fnd_currencies.EXTENDED_PRECISION%type,
85: base_MIN_ACCOUNTABLE_UNIT fnd_currencies.MINIMUM_ACCOUNTABLE_UNIT%type,
86: salescredit_name ra_salesreps.name%type,
87: yes_meaning ar_lookups.meaning%type,
88: no_meaning ar_lookups.meaning%type,
89: tax_exempt_flag_meaning ar_lookups.meaning%type ,

Line 198: IS TABLE OF fnd_currencies.currency_code%TYPE;

194: IS TABLE OF gl_sets_of_books.name%TYPE;
195: TYPE ChartOfAccountsIDTable
196: IS TABLE OF gl_sets_of_books.chart_of_accounts_id%TYPE;
197: TYPE CurrencyCodeTable
198: IS TABLE OF fnd_currencies.currency_code%TYPE;
199:
200: /*-----------------------------------------------------------------------------------
201: Begin AR-specific nested tables definitions
202: -----------------------------------------------------------------------------------

Line 317: IS TABLE OF fnd_currencies.precision%type;

313: IS TABLE OF ar_system_parameters.unallocated_revenue_ccid%type;
314: TYPE periodsetnameTable
315: IS TABLE OF gl_sets_of_books.period_set_name%type;
316: TYPE baseprecisionTable
317: IS TABLE OF fnd_currencies.precision%type;
318: TYPE baseEXTENDEDPRECISIONTable
319: IS TABLE OF fnd_currencies.EXTENDED_PRECISION%type;
320: TYPE baseMINACCOUNTABLEUNITTable
321: IS TABLE OF fnd_currencies.MINIMUM_ACCOUNTABLE_UNIT%type;

Line 319: IS TABLE OF fnd_currencies.EXTENDED_PRECISION%type;

315: IS TABLE OF gl_sets_of_books.period_set_name%type;
316: TYPE baseprecisionTable
317: IS TABLE OF fnd_currencies.precision%type;
318: TYPE baseEXTENDEDPRECISIONTable
319: IS TABLE OF fnd_currencies.EXTENDED_PRECISION%type;
320: TYPE baseMINACCOUNTABLEUNITTable
321: IS TABLE OF fnd_currencies.MINIMUM_ACCOUNTABLE_UNIT%type;
322: TYPE salescreditnameTable
323: IS TABLE OF ra_salesreps.name%type;

Line 321: IS TABLE OF fnd_currencies.MINIMUM_ACCOUNTABLE_UNIT%type;

317: IS TABLE OF fnd_currencies.precision%type;
318: TYPE baseEXTENDEDPRECISIONTable
319: IS TABLE OF fnd_currencies.EXTENDED_PRECISION%type;
320: TYPE baseMINACCOUNTABLEUNITTable
321: IS TABLE OF fnd_currencies.MINIMUM_ACCOUNTABLE_UNIT%type;
322: TYPE salescreditnameTable
323: IS TABLE OF ra_salesreps.name%type;
324: TYPE yesmeaningTable
325: IS TABLE OF ar_lookups.meaning%type;