We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently the RecordSelection Codeunit uses the page summary to select the fields for the record selection.
This results in non-helping media fields being displayed in a list view.
Media should be ignored.
field("Record SystemId"; RecordSystemId) { Caption = 'Record SystemId'; Editable = false; ToolTip = 'Specifies the SystemId of the record.'; trigger OnAssistEdit() var TempRecordSelectionBuffer: Record "Record Selection Buffer" temporary; RecordSelection: Codeunit "Record Selection"; RecordSystemId : Guid; begin CheckForTableId(true); if RecordSelection.Open(Database::167, 2147483647, TempRecordSelectionBuffer) then RecordSystemId := TempRecordSelectionBuffer."Record System Id"; end; }
Furthermore it would be usefult to replace fields for custom apps.
The text was updated successfully, but these errors were encountered:
pri-kise
No branches or pull requests
Describe the issue
Currently the RecordSelection Codeunit uses the page summary to select the fields for the record selection.
This results in non-helping media fields being displayed in a list view.
Expected behavior
Media should be ignored.
Steps to reproduce
Additional context
Furthermore it would be usefult to replace fields for custom apps.
I will provide a fix for a bug
The text was updated successfully, but these errors were encountered: