Hello Community,
i have got the following question.
I want the user to be able to open a page via click on a Field.
If he clicks on the Field i want the page for contacts to open.
However i am setting Filter via Set Range so only certain contacts should be shown to the user.
That is easy.
However i want the user to be able to see the Filter which i have entered and i want the user to be able to change the filter.
These should be possible if the user opens the page and wants to change the filter.
I have already found these functionalities in Business Central however i am not able to copy it.
What i want is this:
What i get instead:
This would be my latest try
ApplicationArea = All;
trigger OnDrillDown()
var
Contact: Record Contact;
ContactList: Page "Contact List";
begin
Contact.Reset();
Contact.SetRange("Reference Contact", Rec."Sell-to Contact No.");
Page.RunModal(Page::"Contact List", Contact)
end;
I have read these:
Dear Community Please Help!