DBA Data[Home] [Help]

APPS.PO_REQAPPROVAL_INIT1 dependencies on GL_CURRENCY_API

Line 4543: gl_currency_api.get_closest_triangulation_rate(

4539: IF (g_po_wf_debug = 'Y') THEN
4540: /* DEBUG */
4541: PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,l_progress);
4542: END IF;
4543: gl_currency_api.get_closest_triangulation_rate(
4544: x_from_currency => p_function_currency, x_to_currency => l_approval_currency,
4545: x_conversion_date => sysdate, x_conversion_type => l_rate_type, x_max_roll_days => 5,
4546: x_denominator => l_denominator_rate, x_numerator => l_numerator_rate, x_rate => l_rate);
4547: l_progress := 'getReqAmountInfo:' || substrb(TO_CHAR(l_rate), 1, 30);

Line 4571: WHEN gl_currency_api.no_rate THEN

4567: l_amount_disp := TO_CHAR(l_amount_approval_currency, FND_CURRENCY.GET_FORMAT_MASK(l_approval_currency,g_currency_format_mask));
4568: x_amount_for_tax := p_tax_amount_disp || ' ' || p_function_currency;
4569: x_amount_for_tax := x_amount_for_tax || ' (' || l_amount_disp || ' ' || l_approval_currency || ')';
4570: EXCEPTION
4571: WHEN gl_currency_api.no_rate THEN
4572: l_progress := 'getReqAmountInfo: no rate';
4573: IF (g_po_wf_debug = 'Y') THEN
4574: /* DEBUG */
4575: PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,l_progress);