DBA Data[Home] [Help]

APPS.MTL_MOVEMENT_RPT_PKG dependencies on GL_CURRENCY_API

Line 37: l_exchange_rate := gl_currency_api.get_rate(

33: -- If CONVERSION_OPTION is Daily
34: if C_CONVERSION_OPTION = 'D'
35: then
36: begin
37: l_exchange_rate := gl_currency_api.get_rate(
38: c_set_of_books_id,
39: l_currency_code,
40: l_transaction_date,
41: c_conversion_type);

Line 43: exception when gl_currency_api.no_rate then

39: l_currency_code,
40: l_transaction_date,
41: c_conversion_type);
42:
43: exception when gl_currency_api.no_rate then
44: l_exchange_rate := null;
45: end;
46: -- If CONVERSION_OPTION is Last day of the period
47: elsif C_CONVERSION_OPTION = 'L'

Line 50: l_exchange_rate := gl_currency_api.get_rate(

46: -- If CONVERSION_OPTION is Last day of the period
47: elsif C_CONVERSION_OPTION = 'L'
48: then
49: begin
50: l_exchange_rate := gl_currency_api.get_rate(
51: c_set_of_books_id,
52: l_currency_code,
53: c_end_date,
54: c_conversion_type);

Line 56: exception when gl_currency_api.no_rate then

52: l_currency_code,
53: c_end_date,
54: c_conversion_type);
55:
56: exception when gl_currency_api.no_rate then
57: l_exchange_rate := null;
58: end;
59: else l_exchange_rate := null;
60: end if;