DBA Data[Home] [Help]

APPS.GCS_TRANSLATION_PKG dependencies on GL_CURRENCY_API

Line 603: x_period_end_rate := GL_CURRENCY_API.get_rate

599: CLOSE end_date_c;
600:
601: -- Get the end rate, and make sure to check for errors.
602: begin
603: x_period_end_rate := GL_CURRENCY_API.get_rate
604: (x_source_currency, x_target_currency,
605: x_period_end_date, per_rate_type);
606: IF x_period_end_rate IS NULL THEN
607: raise GCS_CCY_NO_END_RATE;

Line 616: x_period_avg_rate := GL_CURRENCY_API.get_rate

612: end;
613:
614: -- Get the average rate, and make sure to check for errors.
615: begin
616: x_period_avg_rate := GL_CURRENCY_API.get_rate
617: (x_source_currency, x_target_currency,
618: x_period_end_date, per_avg_rate_type);
619: IF x_period_avg_rate IS NULL THEN
620: raise GCS_CCY_NO_AVG_RATE;