DBA Data[Home] [Help]

APPS.AR_MO_CACHE_UTILS dependencies on GL_SETS_OF_BOOKS

Line 11: set_of_books_id gl_sets_of_books.set_of_books_id%TYPE,

7:
8: /* ------------------------------------------------------------------
9: Generic columns needed by all products
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,

Line 12: set_of_books_name gl_sets_of_books.name%TYPE,

8: /* ------------------------------------------------------------------
9: Generic columns needed by all products
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:

Line 13: chart_of_accounts_id gl_sets_of_books.chart_of_accounts_id%TYPE,

9: Generic columns needed by all products
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: /* ----------------------------------------------------------------------

Line 81: period_set_name gl_sets_of_books.period_set_name%type,

77:
78: tax_registration_number ar_system_parameters.tax_registration_number%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,

Line 192: IS TABLE OF gl_sets_of_books.set_of_books_id%TYPE;

188: operating unit attributes:
189: ---------------------------------------------------------------------------- */
190:
191: TYPE SetOfBooksIDTable
192: IS TABLE OF gl_sets_of_books.set_of_books_id%TYPE;
193: TYPE SetOfBooksNameTable
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;

Line 194: IS TABLE OF gl_sets_of_books.name%TYPE;

190:
191: TYPE SetOfBooksIDTable
192: IS TABLE OF gl_sets_of_books.set_of_books_id%TYPE;
193: TYPE SetOfBooksNameTable
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;

Line 196: IS TABLE OF gl_sets_of_books.chart_of_accounts_id%TYPE;

192: IS TABLE OF gl_sets_of_books.set_of_books_id%TYPE;
193: TYPE SetOfBooksNameTable
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: /*-----------------------------------------------------------------------------------

Line 315: IS TABLE OF gl_sets_of_books.period_set_name%type;

311: IS TABLE OF ar_system_parameters.populate_gl_segments_flag%type;
312: TYPE unallocatedrevenueccidTable
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;