Options

Duplicate Field Name while creating a new page

IsumaruIsumaru Member Posts: 7
edited 2014-01-22 in NAV Three Tier
Hello ,
i have a problem while creating a new page.
I have one table named Testdata

I created a new page with this structure:

Then I saved the page successfully
But when i open this page. the structure is like this

](*,)

I tried this several times and I have the same bug everytime.
Is there a solution for my problem?
I use Navision 2013 7.034543.0

Comments

  • Options
    Marije_BrummelMarije_Brummel Member, Moderators Design Patterns Posts: 4,262
    Field[number] is a reserved word in NAV. It's an undocumented feature.

    For example if you write this C/AL Code:

    Item.Field1 := '2'

    The compiler will generate this code:

    Item."No." := '2'

    This has been this way in NAV since the windows release came out.
  • Options
    IsumaruIsumaru Member Posts: 7
    Thank you for your quick help.
    Works perfectly =D>
Sign In or Register to comment.