Import from Developer's Toolkit error

AlxAlx Member Posts: 38
Good morning everyone.

I have done a Compare and Merge in the Developer's Toolkit, with Base versions 3.70 and 4.00. I export my results to a .txt file and I try to import this on a clean 4.00 to produce a .fob to take to my client. The error I get is:

There is a syntax error in the import on line 10530 in position 3: }
The AL code is not indented as much as the first line.

    PROCEDURE ShowDocDim@32();
    VAR
      DocDim@1000 : Record 357;
      DocDims@1001 : Form 546;
    BEGIN
      DocDim.SETRANGE("Table ID",DATABASE::"Sales Header");
      DocDim.SETRANGE("Document Type","Document Type");
      DocDim.SETRANGE("Document No.","No.");
      DocDim.SETRANGE("Line No.",0);
      DocDims.SETTABLEVIEW(DocDim);
      DocDims.RUNMODAL;
      GET("Document Type","No.");
    END;

    BEGIN
    {
      <changelog>
        <add id="GR0001" dev="jhoek" date="2004-11-22" area="BRANCHES" request="gr-start-40"
        releaseversion="GR4.00">Branches</add>
        <add id="GR0002" dev="jhoek" date="2004-11-22" area="NOSERIES" request="gr-start-40"
        releaseversion="GR4.00">No. Series</add>
        <add id="GR0003" dev="jhoek" date="2004-11-22" area="REBATES" request="gr-start-40"
        releaseversion="GR4.00">Rebates</add>
        <add id="GR0004" dev="jhoek" date="2004-11-22" area="SALESSHIP" request="gr-start-40"
        releaseversion="GR4.00">Sales Invoice - Shipments</add>
        <add id="GR0005" dev="jhoek" date="2005-03-18" area="INVTNOTNEG" feature="PS7143"
        releaseversion="GR4.00.A">Added field to carry batch posting flag</add>
      </changelog>
    }
    END.
  }                                  <---- This is line 10530
}


As you can see, this happens near the end of the object.
What could this be?

Thanx in advance,

Alx

Comments

Sign In or Register to comment.