DBA Data[Home] [Help]

APPS.FA_MC_UPG1_PKG dependencies on GL_CURRENCY_API

Line 1253: by calling the GL_CURRENCY_API to get the relation between the currencies

1249: /* ************************************************************************
1250: This procedure will obtain the triangulation information between the
1251: currency of the Primary Book and the Reporting Book based on the
1252: conversion date and type as defined in GL. The info is obtained by
1253: by calling the GL_CURRENCY_API to get the relation between the currencies
1254: and the exchange rate to use based on the conversion date. In cases where
1255: user does not provide a rate for an asset the rate obtained here will
1256: be used as default. In the case of conversion within EMU, the rate
1257: returned for denominator_rate and numerator_rate will be used.

Line 1262: gl_currency_api.get_relation(

1258: ************************************************************************ */
1259: l_fixed_rate boolean;
1260:
1261: BEGIN
1262: gl_currency_api.get_relation(
1263: p_from_currency,
1264: p_to_currency,
1265: p_conv_date,
1266: l_fixed_rate,

Line 1279: gl_currency_api.get_triangulation_rate(

1275: -- exchange_rate column of fa_mc_conversion_rates. This is
1276: -- default exchange rate as of the init conversion date specified
1277: -- in gl for this reporting book. For EMU conversion, we will use
1278: -- X_denominator_rate and X_numerator_rate for triangulation
1279: gl_currency_api.get_triangulation_rate(
1280: p_from_currency,
1281: p_to_currency,
1282: p_conv_date,
1283: p_conv_type,