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.
codeunit (1004) as follows.
...
WITH PurchLine DO BEGIN ... JobJnlLine.VALIDATE("No.","No.");
JobJnlLine.VALIDATE("Variant Code","Variant Code");
JobJnlLine.VALIDATE("Unit of Measure Code","Unit of Measure Code");
IF PurchHeader."Document Type" = PurchHeader."Document Type"::Order THEN
JobJnlLine.VALIDATE(Quantity,"Qty. to Invoice") ELSE
JobJnlLine.VALIDATE(Quantity,Quantity);
...
...
End;
...
WITH PurchLine DO BEGIN
...
...
JobJnlLine.VALIDATE("No.","No.");
JobJnlLine.VALIDATE("Variant Code","Variant Code");
JobJnlLine.VALIDATE("Unit of Measure Code","Unit of Measure Code");
JobJnlLine."Qty. per Unit of Measure" := "Qty. per Unit of Measure"; // Add this line.
IF PurchHeader."Document Type" = PurchHeader."Document Type"::Order THEN
JobJnlLine.VALIDATE(Quantity,"Qty. to Invoice") ELSE
JobJnlLine.VALIDATE(Quantity,Quantity);……End;
You must have Microsoft Dynamics NAV 2009 SP1 installed to apply this hotfix.
You cannot remove this hotfix.