Skip to content

Instantly share code, notes, and snippets.

@StefanMaron
Created December 14, 2020 13:52
Show Gist options
  • Save StefanMaron/90cdb336450927862103d3da530891e5 to your computer and use it in GitHub Desktop.
Save StefanMaron/90cdb336450927862103d3da530891e5 to your computer and use it in GitHub Desktop.
How to make a column in a List page empty with "SetLoadFields()"
pageextension 50100 CustomerListExt extends "Customer List"
{
actions
{
addlast(processing)
{
action(RunVendorList)
{
ApplicationArea = All;
trigger OnAction()
var
Vendor: Record Vendor;
begin
Vendor.SetLoadFields("No.");
Page.Run(Page::"Vendor Lookup", Vendor);
end;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment