Installation information
Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements.Note Before you install this hotfix, verify that all Microsoft Navision client users are logged off the system. This includes Microsoft Navision Application Services (NAS) client users. You should be the only client user who is logged on when you implement this hotfix.To implement this hotfix, you must have a developer license.
We recommend that the user account in the Windows Logins window or in the Database Logins window be assigned the "SUPER" role ID. If the user account cannot be assigned the "SUPER" role ID, you must verify that the user account has the following permissions: - The Modify permission for the object that you will be changing.
- The Execute permission for the System Object ID 5210 object and for the System Object ID 9015 object.
Note You do not have to have rights to the data stores unless you have to perform data repair.
Code changes
Note Always test code fixes in a controlled environment before you apply the fixes to your production computers. To install this hotfix, change the code in the Properties section in the Order Confirmation report (205) as follows:
Existing code 1...
TempSalesLine@1003 : TEMPORARY Record 37;
// Delete the following line.
TempSalesLineDisc@1004 : TEMPORARY Record 37;
BEGIN
...
Replacement code 1...
TempSalesLine@1003 : TEMPORARY Record 37;
BEGIN
...
Existing code 2...
CLEAR(SalesPost);
// Delete the following line.
CLEAR(TempSalesLineDisc);
VATAmountLine.DELETEALL;
...
Replacement code 2...
CLEAR(SalesPost);
VATAmountLine.DELETEALL;
...
Existing code 3...
SalesLine.DELETEALL;
// Delete the following line.
TempSalesLineDisc.DELETEALL;
SalesPost.GetSalesLines("Sales Header",SalesLine,0);
...
Replacement code 3...
SalesLine.DELETEALL;
SalesPost.GetSalesLines("Sales Header",SalesLine,0);
...
Existing code 4...
SalesLine.UpdateVATOnLines(0,"Sales Header",SalesLine,VATAmountLine);
// Delete the following lines.
SalesPost.GetSalesLines("Sales Header",TempSalesLineDisc,1);
TempSalesLineDisc.CalcVATAmountLines(1,"Sales Header",TempSalesLineDisc,VATAmountLine);
TempSalesLineDisc.UpdateVATOnLines(1,"Sales Header",TempSalesLineDisc,VATAmountLine);
SalesLine."Inv. Discount Amount" := VATAmountLine."Invoice Discount Amount";
// End of the lines.
VATAmount := VATAmountLine.GetTotalVATAmount;
...
Replacement code 4...
SalesLine.UpdateVATOnLines(0,"Sales Header",SalesLine,VATAmountLine);
VATAmount := VATAmountLine.GetTotalVATAmount;
...
Existing code 5...
{ 86 ;4 ;Column ;SalesLineInvDiscAmt ;
// Delete the following lines.
IncludeCaption=No;
SourceExpr=VATAmountLine."Invoice Discount Amount";
// End of the lines.
AutoFormatType=1;
...
Replacement code 5...
{ 86 ;4 ;Column ;SalesLineInvDiscAmt ;
// Add the following line.
SourceExpr=SalesLine."Inv. Discount Amount";
AutoFormatType=1;
...
Existing code 6...
{ 138 ;4 ;Column ;SalsLinAmtExclLineDiscAmt;
// Delete the following line.
SourceExpr=SalesLine."Line Amount" - VATAmountLine."Invoice Discount Amount";
AutoFormatType=1;
...
Replacement code 6...
{ 138 ;4 ;Column ;SalsLinAmtExclLineDiscAmt;
// Add the following line.
SourceExpr=SalesLine."Line Amount" - SalesLine."Inv. Discount Amount";
AutoFormatType=1;
...
Existing code 7...
{ 92 ;4 ;Column ;SalesLineAmtExclLineDisc;
// Delete the following line.
SourceExpr=SalesLine."Line Amount" - VATAmountLine."Invoice Discount Amount" + VATAmount;
AutoFormatType=1;
...
Replacement code 7...
{ 92 ;4 ;Column ;SalesLineAmtExclLineDisc;
// Add the following line.
SourceExpr=SalesLine."Line Amount" - SalesLine."Inv. Discount Amount" + VATAmount;
AutoFormatType=1;
...
Prerequisites
You must have Microsoft Dynamics NAV 2013 installed to apply this hotfix.
Removal information
You cannot remove this hotfix.