I have a list report that uses the event block AT LINE SELECTION
(and HIDE
).
AT LINE-SELECTION.
WRITE: 'Testline'.
* and some more things
When I double click on a line in the main list, AT LINE SELECTION
is processed, and the main list is replaced with a list that consists of the text 'Testline'.
When I klick on the green back button, the main list is shown again.
Everything works as espected.
Now to my question:
Is there some way how the report can be notified when the user clicks on the green back button to go from the detail list to the main list?
The obvious solution AT USER-COMMAND
is not called.
This is the event where I want to SUBMIT
the same report again to update the list.
(I know I could do this with an ALV report, but is this possible with a simple list report?)