Dear all,
Do you know how to solve this issue?
Our client has made a PO in USD and then received in USD but the invoice they received was in LCY. If we input this invoice in LCY, we cannot get the receipt lines. If we input the invoice in USD, we can get the invoice but the tax amount in LCY maybe differ with the amount in original invoice.
Your recommendation is highly appreciated.
Regards,
hant
0
Comments
If you talk about currency, you must consider that you put foreign currency of vendor in its card (on the foreign trade tab). Then don't forget to fill LCY code in tab general on G/L set up. I think you probably don't do it yet.
Rgds,
Johnson
sea-navision-community-subscribe@yahoogroups.com
detail in:
http://sea-navision-community.blogspot.com
Rgds,
Johnson
sea-navision-community-subscribe@yahoogroups.com
detail in:
http://sea-navision-community.blogspot.com
Another question. How can we do adjust the cost for the item without quantity? When I do Positive/Negative adjustment, the system requires the quantity must not be zero.
Thanks in advance.
hant
you wrote:
you are correct if you post the PO with option receive and invoice. You can set currency either in PO or vendor card (if it will be a standard used by vendor) and also purchase invoice if you want purchase invoice separated in printing.
Have you tried to use auto. cost adjustment ? you have to do it if you want to adjust your cost without error.
Rgds,
Johnson
sea-navision-community-subscribe@yahoogroups.com
detail in:
http://sea-navision-community.blogspot.com
I don't use Automatic Cost Posting option due to I don't want to mess up the transaction in G/L. I just want the cost to be posted when I run the batch job. Is my understanding correct?
Thanks,
hant
I am not so sure but I have tried. You set USD in purchase invoice if you don't want set USD in vendor card. then you use get receipt lines, after that you delete currency field in the purchase invoice.
If it still can't be done, you need to customize it except you don't use get receipt lines.
I think you can't do adjust cost if the item is empty in quantity although remaining qty is zero.
Rgds,
Johnson
sea-navision-community-subscribe@yahoogroups.com
detail in:
http://sea-navision-community.blogspot.com
Thanks,
hant
rgds,
Johnson
sea-navision-community-subscribe@yahoogroups.com
detail in:
http://sea-navision-community.blogspot.com
I see that you have qty 10 unit with your item's value is 100, I also see that the item A will be 11, so the value become 110, it means that you need to run adjust cost after posting the 1 unit qty using positive adjustment to know the item A's unit cost or value. Also, you must remember that there won't be exists cost posted to G/L if you use positive adjustment in the item journal, but the item will have item ledger and value entries.
Rgds,
sea-navision-community-subscribe@yahoogroups.com
detail in:
http://sea-navision-community.blogspot.com
Why not process the Invoice in USD, check the LCY values before posting and adjust the VAT if required "F9 - Statistics - VAT Amount", post the Invoice in USD, then apply and pay the Invoice with an LCY payment.
The Vendors Gets his Remittance Advice with LCY values only displayed!
Or am I missing something?
Mobile: +44(0)7854 842801
Email: david.cox@adeptris.com
Twitter: https://twitter.com/Adeptris
Website: http://www.adeptris.com
If this is a one off, just use your calculator and work out the LCY vat amount.
Option 2:
Create a function with a couple of variables to convert the values
GetLCYValue(FCYValue : Integer) : Decimal
PurchHeader.get("Document Type","Document No.");
Currency2.InitRoundingPrecision;
IF PurchHeader."Currency Code" <> '' THEN
ValueLCY :=
ROUND(
CurrExchRate.ExchangeAmtFCYToLCY(
GetDate,"Currency Code",
FCYValue ,PurchHeader."Currency Factor"),
Currency2."Amount Rounding Precision")
ELSE
ValueLCY :=
ROUND(FCYValue ,Currency2."Amount Rounding Precision");
EXIT(ValueLCY);
Textbox SourceExpr = getLCYValue("VAT Amount")
Textbox SourceExpr = getLCYValue("VAT Base")
Hope this helps
Mobile: +44(0)7854 842801
Email: david.cox@adeptris.com
Twitter: https://twitter.com/Adeptris
Website: http://www.adeptris.com