cancel
Showing results for 
Search instead for 
Did you mean: 

how to mark block in table-control via SAPGUI

urbschat
Explorer
0 Kudos

Is there an option to mark a block of lines in a table-control via SAPGUI funktions like mark first line, then mark end of block by holding shift or any other key? This question is exspecially related to internal table entries in ABAP debugger.

Sandra_Rossi
Active Contributor
0 Kudos

Yes. In the screen painter, in the table control attributes, use "with selection column" and "multiple lines".

Accepted Solutions (0)

Answers (2)

Answers (2)

daniel_mccollum
Active Contributor

you can send the indices for the rows depending on the object.

session.findById("wnd[0]/usr/cntlGRID1/shellcont/shell").selectedRows = "6,11,16-20,24-30,33"

something like this
urbschat
Explorer
0 Kudos

Thanks for your answer. That's the general configuration to allow mark of lines.
With that it possible to mark the lines by selecting them by mouse click. But it only possible to click a single line at a time. I don't see any option to mark multiple line at a time like block selecting by holding SHIFT or CTRL an mark last line of a block.

Sandra_Rossi
Active Contributor
0 Kudos

You're right. I was probably confused with the ALV grid control where this feature is allowed.