DBA Data[Home] [Help]

APPS.AR_MO_GLOBAL_CACHE dependencies on FND_CURRENCIES

Line 308: Check row exists in fnd_currencies

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

Line 314: fnd_currencies c

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

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

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