Applies to Product -Dynamics 365 Lifecycle Services
What’s happening?
The customer accidentally ran the "settle and post sales tax" process and needs to reverse the resulting entries.
Reason:
The sales tax was posted by mistake during the settlement process.
Resolution:
To reverse the transactions made by the "settle and post sales tax" in Microsoft Dynamics 365, follow these steps:
- Take a Screenshot: Capture the incorrect settlement voucher for reference.
- Calculate Balances:
- Go to the Trial Balance.
- Calculate balances for the tax period by clicking ‘Calculate Balances’.
- Filter by the account shown in the incorrect settlement voucher.
- Find the Incorrect Voucher:
- Click on All Transactions.
- Filter by date or voucher to locate the incorrect tax settlement voucher.
- Reverse the Transaction:
- Select the incorrect settlement voucher.
- Click on the transaction.
- Fill in the Reversal Posting Date and click OK. This step reverses the incorrect settlement voucher and should not impact the trial balance anymore.
- If the voucher cannot be reversed in this account, use a different account and repeat steps 3 and 4.
- Update TaxTrans:
- Update the TaxTrans of the reverse voucher using the following SQL script: sql UPDATE TaxTrans SET ORIGINTAXTRANSRECID = {ALPHANUMERICPII} WHERE voucher = 'voucher of tax payment reverse voucher' AND transdate = 'the transaction date of tax payment reverse voucher' AND DATAAREAID = 'data area {ALPHANUMERICPII}'
- Create a New Tax Period:
- Set up new period intervals.
- Update the old TaxTrans’s tax period to the new tax period using the following script: sql UPDATE TaxTrans SET taxperiod = 'Test' WHERE taxperiod = {ALPHANUMERICPII} AND dataareaid = {ALPHANUMERICPII} AND transdate = {ALPHANUMERICPII} AND taxrepcounter = {ALPHANUMERICPII} AND source != {ALPHANUMERICPII}
- Post Sales Tax Again:
- Go to Tax Declarations > Sales Tax and post sales tax and settle for the new tax period.
For more details, refer to the documentation on reversing a sales tax payment and the reverse charge mechanism for VAT/GST scheme in Dynamics 365.
