DBA Data[Home] [Help]

APPS.AP_OPEN_ITEMS_REVAL_PKG dependencies on GL_CURRENCY_API

Line 844: gl_currency_api.get_relation

840: -- is an EMU fixed rate currency, if so, we would have to
841: -- calculate an exchange rate by checking the rate in GL transaction
842: -- rates for EUR
843:
844: gl_currency_api.get_relation
845: (
846: x_from_currency => trx_currency_code
847: ,x_to_currency => g_base_currency_code
848: ,x_effective_date => g_revaluation_date

Line 856: gl_currency_api.get_rate

852:
853: IF l_relationship IN ('EMU-EMU', 'EMU-EURO', 'EURO-EMU') THEN
854:
855: l_revaluation_rate:=
856: gl_currency_api.get_rate
857: (x_from_currency => trx_currency_code
858: ,x_to_currency => g_base_currency_code
859: ,x_conversion_date => g_revaluation_date
860: ,x_conversion_type => 'DUMMY');

Line 867: gl_currency_api.get_rate

863:
864: ELSIF (l_relationship = 'EMU-OTHER') THEN
865:
866: l_multiply_factor :=
867: gl_currency_api.get_rate
868: (x_from_currency => trx_currency_code
869: ,x_to_currency => g_eur_code
870: ,x_conversion_date => g_revaluation_date
871: ,x_conversion_type => 'DUMMY');

Line 1009: g_eur_code := gl_currency_api.get_euro_code;

1005: and lookup_code = P_CLEARED_ONLY;
1006:
1007: /* Bugs 14297602, 14136626*/
1008: BEGIN
1009: g_eur_code := gl_currency_api.get_euro_code;
1010: EXCEPTION
1011: WHEN OTHERS THEN
1012: g_eur_code := 'DUMMY';
1013: END;