DBA Data[Home] [Help]

APPS.PO_REQAPPROVAL_INIT1 dependencies on FND_CURRENCY

Line 13: --in FND_CURRENCY.GET_FORMAT_MASK

9: g_document_subtype PO_HEADERS_ALL.TYPE_LOOKUP_CODE%TYPE;
10:
11: --Bug#3497033
12: --g_currency_format_mask declared to pass in as the second parameter
13: --in FND_CURRENCY.GET_FORMAT_MASK
14: g_currency_format_mask NUMBER := 60;
15:
16: /*=======================================================================+
17: | FILENAME

Line 5395: FND_CURRENCY.GET_FORMAT_MASK(l_approval_currency,g_currency_format_mask));

5391: /* setting amount for notification subject */
5392: l_amount_approval_currency := (p_total_amount/l_denominator_rate) * l_numerator_rate;
5393:
5394: l_amount_disp := TO_CHAR(l_amount_approval_currency,
5395: FND_CURRENCY.GET_FORMAT_MASK(l_approval_currency,g_currency_format_mask));
5396: x_amount_for_subject := l_amount_disp || ' ' || l_approval_currency;
5397:
5398: /* setting amount for header attribute */
5399: l_amount_approval_currency := (p_req_amount/l_denominator_rate) * l_numerator_rate;

Line 5402: FND_CURRENCY.GET_FORMAT_MASK(l_approval_currency,g_currency_format_mask));

5398: /* setting amount for header attribute */
5399: l_amount_approval_currency := (p_req_amount/l_denominator_rate) * l_numerator_rate;
5400:
5401: l_amount_disp := TO_CHAR(l_amount_approval_currency,
5402: FND_CURRENCY.GET_FORMAT_MASK(l_approval_currency,g_currency_format_mask));
5403:
5404: l_progress := 'getReqAmountInfo:' || l_amount_disp;
5405: IF (g_po_wf_debug = 'Y') THEN
5406: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,l_progress);

Line 5415: FND_CURRENCY.GET_FORMAT_MASK(l_approval_currency,g_currency_format_mask));

5411:
5412: l_amount_approval_currency := (p_tax_amount/l_denominator_rate) * l_numerator_rate;
5413:
5414: l_amount_disp := TO_CHAR(l_amount_approval_currency,
5415: FND_CURRENCY.GET_FORMAT_MASK(l_approval_currency,g_currency_format_mask));
5416:
5417: x_amount_for_tax := p_tax_amount_disp || ' ' || p_function_currency;
5418: x_amount_for_tax := x_amount_for_tax || ' (' || l_amount_disp || ' ' || l_approval_currency || ')';
5419:

Line 5712: fnd_currency.get_info(l_currency_code,

5708: aname => 'DOCUMENT_ID');
5709:
5710: l_currency_code := PO_CORE_S2.get_base_currency;
5711: /*Start Bug#3406460 - call to fnd function to get precision */
5712: fnd_currency.get_info(l_currency_code,
5713: l_precision,
5714: l_ext_precision,
5715: l_min_acct_unit);
5716: /* End Bug#3406460*/

Line 5727: l_req_amount_disp := TO_CHAR(l_req_amount,FND_CURRENCY.GET_FORMAT_MASK(

5723: ** will show the total in the BASE/FUNCTIONAL currency.
5724: ** For POs, we will show it in the Document currency specified by the user.
5725: */
5726:
5727: l_req_amount_disp := TO_CHAR(l_req_amount,FND_CURRENCY.GET_FORMAT_MASK(
5728: l_currency_code, g_currency_format_mask));
5729:
5730: wf_engine.SetItemAttrText ( itemtype => itemtype,
5731: itemkey => itemkey,

Line 5744: l_tax_amount_disp := TO_CHAR(l_tax_amount,FND_CURRENCY.GET_FORMAT_MASK(

5740: OPEN req_tax_csr(l_doc_id);
5741: FETCH req_tax_csr into l_tax_amount;
5742: CLOSE req_tax_csr;
5743:
5744: l_tax_amount_disp := TO_CHAR(l_tax_amount,FND_CURRENCY.GET_FORMAT_MASK(
5745: l_currency_code, g_currency_format_mask));
5746:
5747: wf_engine.SetItemAttrText ( itemtype => itemtype,
5748: itemkey => itemkey,

Line 5754: l_total_amount_disp := TO_CHAR(l_total_amount,FND_CURRENCY.GET_FORMAT_MASK(

5750: avalue => l_tax_amount_disp);
5751:
5752: l_total_amount := l_req_amount + l_tax_amount;
5753:
5754: l_total_amount_disp := TO_CHAR(l_total_amount,FND_CURRENCY.GET_FORMAT_MASK(
5755: l_currency_code, g_currency_format_mask));
5756:
5757:
5758: /* bug 3105327