Code compare tool

gvolkovgvolkov Member Posts: 196
What is the name of the tool that produces results below? And where can i get it?
+--------------------------------------------------------------+
! Codeunit 14000701 Shipping                                   !
+--------------------------------------------------------------+
  Object is Changed (0.03 % changed)

---------------

PROCEDURE WriteShipChargeSalesHeader
--- Before ----
            SalesLine."Shipping Charge" := TRUE;
            SalesLine.VALIDATE("No.",ShippingAgentCharge."Free Freight Code");
            IF ShippingSetup."Location Packing" THEN
              SalesLine.VALIDATE("Location Code",PackingStation."Location Code");
--- After -----
            SalesLine."Shipping Charge" := TRUE;
            SalesLine.VALIDATE("No.",ShippingAgentCharge."Free Freight Code");
            SalesLine.VALIDATE("Prepayment %",0);
            IF ShippingSetup."Location Packing" THEN
              SalesLine.VALIDATE("Location Code",PackingStation."Location Code");
---------------
Microsoft Certified Technology Specialist
Microsoft Certified Business Management Solutions Professional
Microsoft Certified Business Management Solutions Specialist

http://www.navisiontech.com

Comments

Sign In or Register to comment.