Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Tax Detail Amounts on SOP Forms

Status
Not open for further replies.

Luvsql

Technical User
Apr 3, 2003
1,179
CA
I use the function "rw_GetDocTaxRngAmt" in order to get the tax detail amounts to print on the bottom of the forms. This works great, however, if the invoice/order is not in functional currency, all the other fields print in originating except for this field, so the amounts do not add up to the total.

I can't use the "Options" forms because it's not possible to modify how the text appears and where it appears on the form.

Can this not print functional?
 
There are a couple of other RW functions that might work for you.

rw_MCCalcCurrencyViewAmount()
function returns currency rw_MCCalcCurrencyViewAmount;

in integer nCurrencyView; { Make this 1 to convert to Functional }
in currency cyOrigCurrencyAmount;
in integer nRateCalcMthd; { Make this 1 for multiply and 2 for divide }
in 'Exchange Rate' cyExchRate;
in 'Exchange Rate' cyDenomExchRate;
in 'Currency ID' sCurrencyID;


or

RW_ConvertToReportingCurrency() in System Series

function returns currency cyReportingAmt;
in 'Print Currency In' nPrintCurrencyIn; { Make this equal to 1 }
in currency cyFunctionalAmt;
in 'Rate Calculation Method' nRateCalcMethod; { Make this 1 for multiply and 2 for divide }
in 'Reporting Exchange Rate' cyReptExchRate;

Hope this helps

David Musgrave [MSFT]
Senior Development Consultant
MBS Services - Asia Pacific

Microsoft Business Solutions

Any views contained within are my personal views and
not necessarily Microsoft Business Solutions policy.
This posting is provided "AS IS" with no warranties,
and confers no rights.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top