Hi I am trying to use the new RecordRef functionality in Navision 3.60 but I found that if you insert a value in a field of datatype ‘code’ the first caracter gets lost… [?] This only happens with ‘code’ fields but makes it very hard to make dynamic solution using RecordRef… [:(] Any solution would be appreciated… [:)]
Hi Rasmus, I had the same problem as you [}:)] The solution is that you need to use a code variable instead of plain text. That is: FieldRef.Value(‘Test’) will not work. But CodeVar := ‘Test’; FieldRef.Value(CodeVar) did work … I guess it is kind of like the first steps with Automation …[:)] Cristi
I guess it is kind of like the first steps with Navision… Buggy as hell!