cancel
Showing results for 
Search instead for 
Did you mean: 

place the alv report in table control

Former Member
0 Kudos

i have one requirement ,i will call the alv grid report in the table control.

how to place the control area in to table control?

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi

You can add table control to a screen in the Screen Painter. The typical flow-logic to process table control is:

LOOP AT <internal table> CURSOR <scroll-var>

WITH CONTROL <table-control>

FROM <line1> TO <line2> .

...<actions>...

ENDLOOP.