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.
To resolve this problem, change the code in the Number 1 data item in the Exp. Annual VAT Communication
...
ProvisionCode@1130002 : Code[5];
DataSupplierType@1130003 : Code[2];
ExportedText@1130001 : ARRAY [2] OF Text[1024];
BEGIN
RecordType := 'A';
// Delete the following line.
ProvisionCode := 'IVC' + FORMAT(CALCDATE('<+1Y>', StartDate), 2, '<Year,2>');
DataSupplierType := '01';
ExportedText[1] :=
RecordType +
PADSTR('', 14) +
...
...
ProvisionCode@1130002 : Code[5];
DataSupplierType@1130003 : Code[2];
ExportedText@1130001 : ARRAY [2] OF Text[1024];
BEGIN
RecordType := 'A';
// Add the following line.
ProvisionCode := 'IVC10';
DataSupplierType := '01';
ExportedText[1] :=
RecordType +
PADSTR('', 14) +
...