DBA Data[Home] [Help]

APPS.AR_MO_GLOBAL_CACHE dependencies on FND_CURRENCIES

Line 305: Check row exists in fnd_currencies

301: APP_EXCEPTION.raise_exception;
302: RAISE;
303: end;
304: /* ---------------------------------------------
305: Check row exists in fnd_currencies
306: ---------------------------------------------- */
307: begin
308: SELECT 'x' into l_exp_flag
309: FROM ar_system_parameters sp,

Line 311: fnd_currencies c

307: begin
308: SELECT 'x' into l_exp_flag
309: FROM ar_system_parameters sp,
310: gl_sets_of_books sob,
311: fnd_currencies c
312: WHERE sob.set_of_books_id = sp.set_of_books_id
313: and sp.org_id = p_org_id
314: and sob.currency_code = c.currency_code;
315: exception

Line 321: FND_MESSAGE.set_name('AR','AR_NO_ROW_IN_FND_CURRENCIES');

317: IF PG_DEBUG in ('Y', 'C') THEN
318: arp_util.debug('get_org_attributes: ' || 'EXCEPTION: NO_DATA_FOUND IN CURRENCIES
319: - ar_mo_global_cache.get_org_attributes' );
320: END IF;
321: FND_MESSAGE.set_name('AR','AR_NO_ROW_IN_FND_CURRENCIES');
322: APP_EXCEPTION.raise_exception;
323: RAISE;
324: end;
325: WHEN value_error THEN