Options

Fields of RecordID type display value =<BINARY> in RTC

-alya--alya- Member Posts: 6
edited 2011-10-11 in NAV Three Tier
Hi!

Usually in classic NAV field of type RecordID displays table number and the primary key of a table, in RTC this field displays just <BINARY> value instead. Is there any opportunity to change it and show in RTC the same value as in classic?

Thanks in advance.

Comments

  • Options
    BeliasBelias Member Posts: 2,998
    what's the build no. of your nav?
    there are a pair of hotfixes about the recordid, that maybe will solve your problem. Personally, I bet on this one

    https://mbs2.microsoft.com/Knowledgebase/KBDisplay.aspx?scid=kb;EN-US;977064
    -Mirko-
    "Never memorize what you can easily find in a book".....Or Mibuso
    My Blog
  • Options
    -alya--alya- Member Posts: 6
    I use NAV 2009 R2 build 32294
    And the issue mentioned in hotfix has slightly another origin...as I can compile page with this RecordID type field without any problem.
  • Options
    racakaracaka Member Posts: 4
    Hi, you should use a RecordID variable, and a text variable in RTC to have the old kind of RecId properly.

    like this:

    Variables: Reid:RecordID, RecIdStr:Text(40)

    ReId := RecRef.RECORDID;
    RecIdStr := FORMAT(ReId);
    MESSAGE(RecIdStr); //For example 'Customer:012121212'



    Voilà :)
Sign In or Register to comment.