Comments
I'm trying to understand your requestYou do have the option to check if an Fieldref exist and then assign the Fieldref, so why do you need more?var MyRecordRef: RecordRef; i: Integer; VarFieldName: FieldRef; Text000: Label 'The %1 table contains %2 field\(s\).\\';begin MyRecordRef.Open(18); for i := 1 to 12 do begin if MyRecordRef.FieldExist(i) then begin VarFieldName := MyRecordRef.Field(i); Message(Text000, i, VarFieldName.Name); end else Message(Text001, i); end; end;
We would like to see this option come back as well. The smart search shows every single item with the searched letter or word. Since we moved from NAV 2017 to BC we found that user productivity went down drastically when typing in values in columns. They now have to search the list that comes up or enter a very thorough value. There should be an option in the table for the user to make that column defaulted. Then every time that column is used it would be defaulted to the column we use.
I have had a client as for exactly this, if they have a long item number with a long description, where the first part of the description field is always the same like:ITEM000456 - 'Widget double reinforced round part for pipes 2' thick'ITEM000457 - 'Widget double reinforced round part for pipes 3' thick'ITEM000458 - 'Widget double reinforced round part for pipes 4' thick'ITEM000459 - 'Widget double reinforced round part for pipes 5' thick'ITEM000460 - 'Widget double reinforced round part for pipes 6' thick'They don't see the final bit of data because the screen cuts off.