cancel
Showing results for 
Search instead for 
Did you mean: 

Trigger START-OF-SELECTION on clicking custom refresh button though RELEABL3 program enhancement

kavmp
Participant
0 Kudos
574

I have to add a refresh button to Meter Reading Results Display screen and I have done that using implicit enhancement in RELEABL3 program. But to implement the refresh logic, I need to fetch all the data again (basically everything the code does from start of selection) So, if there is a way for me to trigger start of selection when my custom button is pressed, or if there is any other way to refresh the MR Results without going back to the previous screen and coming, pls help me with it.

Thanks for the Help! I am really stuck at this. All of the help is much appreciated.

View Entire Topic
Sandra_Rossi
Active Contributor
0 Kudos

To SUBMIT the program again with all same parameters:

  1. CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS' ... " to retrieve the values of all parameters in one call in format of below WITH SELECTION-TABLE
  2. SUBMIT ... WITH SELECTION-TABLE ... AND RETURN. " to pass all the parameter values in one call

Search the official ABAP documentation and the Web for more details.