DBA Data[Home] [Help]

APPS.GL_JOURNALS_AUTOCOPY dependencies on GL_CURRENCY_API

Line 287: conversion_rate := gl_currency_api.get_rate(

283: -- new conversion rate as of the new effective date. If you
284: -- can't get one, than leave the conversion information alone.
285: IF (conversion_type <> 'User') THEN
286: BEGIN
287: conversion_rate := gl_currency_api.get_rate(
288: currency_code,
289: funct_curr,
290: New_eff_date,
291: conversion_type);

Line 294: WHEN gl_currency_api.no_rate THEN

290: New_eff_date,
291: conversion_type);
292: conversion_date := New_eff_date;
293: EXCEPTION
294: WHEN gl_currency_api.no_rate THEN
295: null;
296: END;
297: ELSE
298: conversion_date := New_eff_date;