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.
0
Comments
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
"Never memorize what you can easily find in a book".....Or Mibuso
My Blog
And the issue mentioned in hotfix has slightly another origin...as I can compile page with this RecordID type field without any problem.
like this:
Variables: Reid:RecordID, RecIdStr:Text(40)
ReId := RecRef.RECORDID;
RecIdStr := FORMAT(ReId);
MESSAGE(RecIdStr); //For example 'Customer:012121212'
Voilà