Hi
You can add the fields from the table like mandatory fields that have to fill. For example, if the table has Code and Description fields then the page looks like below.
page 50125 MyLookupPage
{
PageType = List;
ApplicationArea = All; // Add this property if u want the page to be appeared in search
UsageCategory = Administration; // Add this property if u want the page to be appeared in search
SourceTable = MyLookupTable;
layout
{
area(Content)
{
repeater(General) // repeater - data shows as list
{
field(Code;Code)
{
ApplicationArea = All;
}
field(Description;Description)
{
ApplicationArea = All;
}
}
}
}
var
myInt: Integer;
}
And on the respective table properties
DrillDownPageId = MyLookupPage;
LookupPageId = MyLookupPage;
Help community by marking the answer as Yes if it solves your problem.
Regards,
Avinash B