To implement this hotfix, you must have a developer license.
You do not have to have rights to the data stores unless you have to perform data repair.
trigger in the "Sales VAT Adv. Not. Acc. Proof" report (11009) as follow:
…
GLEntry.RESET;
GLEntry.SETCURRENTKEY("Transaction No.");
REPEAT
GLEntry.SETRANGE("Transaction No.",VATEntry."Transaction No.");
GLEntry.SETRANGE("Gen. Bus. Posting Group",VATEntry."Gen. Bus. Posting Group");
GLEntry.SETRANGE("Gen. Prod. Posting Group",VATEntry."Gen. Prod. Posting Group");
GLEntry.SETRANGE("VAT Bus. Posting Group",VATEntry."VAT Bus. Posting Group");
GLEntry.SETRANGE("VAT Prod. Posting Group",VATEntry."VAT Prod. Posting Group");
…
…
GLEntry.RESET;
GLEntry.SETCURRENTKEY("Transaction No.");
REPEAT
GLEntry.SETRANGE("Transaction No.",VATEntry."Transaction No.");
//Add the following line.
GLEntry.SETRANGE("Gen. Posting Type",VATEntry.Type);
GLEntry.SETRANGE("Gen. Bus. Posting Group",VATEntry."Gen. Bus. Posting Group");
GLEntry.SETRANGE("Gen. Prod. Posting Group",VATEntry."Gen. Prod. Posting Group");
GLEntry.SETRANGE("VAT Bus. Posting Group",VATEntry."VAT Bus. Posting Group");
GLEntry.SETRANGE("VAT Prod. Posting Group",VATEntry."VAT Prod. Posting Group");
…
.