Application Development and Automation 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: 
Read only

Grid Control

Former Member
0 Likes
476

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
Read only

Former Member
0 Likes
441

Hi,

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

L.Velu

Read only

Former Member
0 Likes
441

CALL THE following method after creating tree.

data: alv_tree type ref to cl_gui_alv_tree.

CALL METHOD ALV_TREE->FRONTEND_UPDATE.

Read only

andreas_mann3
Active Contributor
0 Likes
441

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?