Internal Compiler error

AlbertvhAlbertvh Member Posts: 516
Hi All,

I get the following error when I try and compile a table
Internal Compiler Error. Error Code = 0000001a

Does anybody know how to get around this error?
Nav 6 SP1 29626 SQL

Regards,
Albert

Answers

  • BeliasBelias Member Posts: 2,998
    strange error, i've never seen it and i've not been able to google/bing it...
    where did the object come from? was it imported from a text file?

    did you try to export the object as text?and fob?
    did you try to delete all the code and recompile?
    -Mirko-
    "Never memorize what you can easily find in a book".....Or Mibuso
    My Blog
  • AlbertvhAlbertvh Member Posts: 516
    Hi,
    Thanks for your reply.

    This object compiles no problem in NAV 6 no SP. I exported this as text from that and imported into NAV 6 SP1 and tried to recompile and got the error.
    I will try your suggestion of deleting all code and recompiling.

    Regards,
    Albert
  • BeliasBelias Member Posts: 2,998
    try to export the fob from nav6 and then import it in nav6sp1...probably, some property is formatted differently in the text file generated in the two version.
    after that you can export the text file from both versions, and compare them with winmerge to find what's different
    -Mirko-
    "Never memorize what you can easily find in a book".....Or Mibuso
    My Blog
  • AlbertvhAlbertvh Member Posts: 516
    I deleted all code recompiles ok.
    I've done that and there are no differences in the text files. I will try with a process of elimination of code.

    Thanks
    Albert
  • AlbertvhAlbertvh Member Posts: 516
    Hi Belias,

    I found a solution by deleting this line
    Field.Type::Binary      : IF (EVALUATE(Bin, pValue)) THEN FldRef.VALUE := Bin;
    

    Seems that the compile does not like this Field type.

    Thanks
  • BeliasBelias Member Posts: 2,998
    i'm glad you've find the solution, thanks for sharing! :thumbsup:
    -Mirko-
    "Never memorize what you can easily find in a book".....Or Mibuso
    My Blog
  • vaprogvaprog Member Posts: 1,139
    Try renaming your Field variable. You should avoid naming any identifiers the same as reserved words or built-in functions.
  • AlbertvhAlbertvh Member Posts: 516
    Hi Vaprog,

    The variable is the virtual table 2000000041 Field. I tried your suggestion and changed the variable to FieldRec and uncommented my line. I then got the same error.

    Thanks

    Albert
Sign In or Register to comment.