show the Records in list page which are not selected .when click the Action trigger ..it should be show in popup window which are not selected records ...so for this what code should write in OnAction Trigger ,explain Clear......
show the Records in list page which are not selected .when click the Action trigger ..it should be show in popup window which are not selected records ...so for this what code should write in OnAction Trigger ,explain Clear......
Hi,
You can retrieve your selected records using CurrPage.SETSELECTIONFILTER("Record variable");
This function marks the selected records and sets the "marked only" filter, you have to invert the mark in all records.
I am not sure if this will work but I would try to do the following:
After call CurrPage.SETSELECTIONFILTER("Record variable"); function
Call "Record variable".MARKEDONLY(False); to remove the markedonly filter, and then begin with the invert process
IF "Record variable".FINDSET THEN REPEAT "Record variable".MARK := NOT "Record variable".MARK; UNTIL "Record variable".NEXT <= 0;
(I used the < sign to avoid memory leaks)
"Record variable".MARKEDONLY(True); PAGE.RUN(........(parameters)...............,"Record variable");
I have not tried this, but maybe it will help you
Amazing requirement, Can you go in a level more detail?
You need to provide more details about your requirement and what have you tried till now and what error you are getting. Please don't expect us to write all the code for you, please do some research and try, if something fails or errors let us know we are happy to help.
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 290,570 Super User 2024 Season 2
Martin Dráb 228,683 Most Valuable Professional
nmaenpaa 101,148