DBA Data[Home] [Help]

APPS.PO_POAPPROVAL_INIT1 dependencies on FND_CURRENCY

Line 707: l_po_amount_disp := TO_CHAR(l_po_amount,FND_CURRENCY.GET_FORMAT_MASK(

703: itemkey => itemkey,
704: aname => 'PO_AMOUNT_DSP_NUMERIC',
705: avalue => l_po_amount);
706:
707: l_po_amount_disp := TO_CHAR(l_po_amount,FND_CURRENCY.GET_FORMAT_MASK(
708: POHdr_rec.currency_code,30));
709:
710: x_progress := 'l_po_amount: '||l_po_amount||'l_po_amount_disp: '||l_po_amount_disp;
711: IF (g_po_wf_debug = 'Y') THEN

Line 755: fnd_currency.get_info( POHdr_rec.currency_code,

751: , xn_excl_nr_tax_amount => ln_jai_excl_nr_tax
752: );
753: ELSE
754: --original tax calc code
755: fnd_currency.get_info( POHdr_rec.currency_code,
756: X_precision,
757: X_ext_precision,
758: X_min_acct_unit);
759:

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

820: itemkey => itemkey,
821: aname => 'TAX_AMOUNT_DSP_NUMERIC',
822: avalue => l_tax_amount );
823:
824: l_tax_amount_disp := TO_CHAR(l_tax_amount,FND_CURRENCY.GET_FORMAT_MASK(
825: POHdr_rec.currency_code,30));
826:
827: wf_engine.SetItemAttrText ( itemtype => itemtype,
828: itemkey => itemkey,

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

830: avalue => l_tax_amount_disp );
831:
832: l_total_amount := l_po_amount + l_tax_amount;
833:
834: l_total_amount_disp := TO_CHAR(l_total_amount,FND_CURRENCY.GET_FORMAT_MASK(
835: POHdr_rec.currency_code,30));
836:
837: wf_engine.SetItemAttrText ( itemtype => itemtype,
838: itemkey => itemkey,

Line 856: l_total_funded_amount_disp := TO_CHAR(l_total_funded_amount,FND_CURRENCY.GET_FORMAT_MASK(

852:
853: -- total funded amount must be displayed in functional currency
854: l_currency_code := PO_CORE_S2.get_base_currency;
855:
856: l_total_funded_amount_disp := TO_CHAR(l_total_funded_amount,FND_CURRENCY.GET_FORMAT_MASK(
857: l_currency_code,30));
858:
859: po_wf_util_pkg.SetItemAttrText ( itemtype => itemtype,
860: itemkey => itemkey,

Line 1100: l_po_amount_disp := TO_CHAR(l_po_amount,FND_CURRENCY.GET_FORMAT_MASK(

1096: aname => 'DOCUMENT_ID');
1097:
1098: l_po_amount := po_notifications_sv3.get_doc_total('RELEASE', l_doc_id);
1099:
1100: l_po_amount_disp := TO_CHAR(l_po_amount,FND_CURRENCY.GET_FORMAT_MASK(
1101: RelHdr_rec.currency_code,30));
1102:
1103: wf_engine.SetItemAttrText ( itemtype => itemtype,
1104: itemkey => itemkey,

Line 1143: fnd_currency.get_info( RelHdr_rec.currency_code,

1139: , xn_excl_nr_tax_amount => ln_jai_excl_nr_tax
1140: );
1141: ELSE
1142: --original tax calc code
1143: fnd_currency.get_info( RelHdr_rec.currency_code,
1144: X_precision,
1145: X_ext_precision,
1146: X_min_acct_unit);
1147:

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

1180: END IF;--(lv_tax_region ='JAI')
1181: ------------------------------------------------------------------------------------
1182: --Modified by Eric Ma for IL PO Notification on Apr-13,2009,End
1183:
1184: l_tax_amount_disp := TO_CHAR(l_tax_amount,FND_CURRENCY.GET_FORMAT_MASK(
1185: RelHdr_rec.currency_code,30));
1186:
1187: wf_engine.SetItemAttrText ( itemtype => itemtype,
1188: itemkey => itemkey,

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

1191:
1192: l_total_amount := l_po_amount + l_tax_amount;
1193:
1194:
1195: l_total_amount_disp := TO_CHAR(l_total_amount,FND_CURRENCY.GET_FORMAT_MASK(
1196: RelHdr_rec.currency_code,30));
1197:
1198: wf_engine.SetItemAttrText ( itemtype => itemtype,
1199: itemkey => itemkey,