0

I'm working with dynpros and ALV-tables in my ABAP-Report. When I'm selecting an specific row, and clicking on an button for an specific event, an dynpro is beeing called. After closing the dynpro I want to select the same row as in the beginning. How can I set the property to select that specific row in abap?

Sandra Rossi
  • 11,934
  • 5
  • 22
  • 48
Markus
  • 41
  • 7
  • 1
    How do you build ALV? By using SALV classes or some legacy way? – Suncatcher Dec 04 '17 at 08:55
  • 1
    Do you open dynpro or popup? They are different entities. Give us the code, finally. – Suncatcher Dec 04 '17 at 09:09
  • @Suncatcher I'm using both. I have an Dynpro to edit the whole row and and popup to add an value to an specific cell in the selected row. I can't share the code because it is an business critical application. The ALV is created by an SAP function module. – Markus Dec 04 '17 at 09:30

1 Answers1

0

After the Dynpro is closed, the ALV Grid is displayed again.

You need to set the layout with the selected row in your layout and call the same function module you used previously.

Sample Algorithm:

  1. Display ALV
  2. Trigger Event
  3. Display ALV
subham soni
  • 274
  • 1
  • 5
  • 17