Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Grid Control

Former Member
0 Kudos

Hi,

How to enable vertical and horizontal scroll bars in Grid Control. Can anybody please modify the piece of code given below.

<b>

PROCESS BEFORE OUTPUT.

LOOP AT itab WITH CONTROL vcontrol CURSOR vcontrol-current_line.

MODULE status_010O.

ENDLOOP.

PROCESS AFTER INPUT.

MODULE user_command_0100.

LOOP AT itab.

ENDLOOP.</b>

Thanns in advance

3 REPLIES 3

Former Member
0 Kudos

Hi,

Scroll bar is automatic for both sides.We have to write coding for scrolling function.

L.Velu

Former Member
0 Kudos

CALL THE following method after creating tree.

data: alv_tree type ref to cl_gui_alv_tree.

CALL METHOD ALV_TREE->FRONTEND_UPDATE.

andreas_mann3
Active Contributor
0 Kudos

hi,

use fm SCROLLING_IN_TABLE

-> look docu and where used list

A.

P.S.

why is your header grid control and not table control?