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 200: IS TABLE OF fnd_currencies.currency_code%TYPE;

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

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

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

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

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

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

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