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

alv grid control

Former Member
0 Kudos
226

in the program how can i enable or disable alv grid control?

3 REPLIES 3
Read only

Nkrish
Contributor
0 Kudos
202

Hi,

If you are embedding a ALV control on the screen , use LOOP AT SCREEN and then say if scree-name = <give the name of the alv grid> and then set the ENABLED property to false.

go to transaction ABAPDOCU in that you can check the screens => under ABAP user dialogs. There are a lot of examples.

Regards,

Narayani

Read only

Former Member
0 Kudos
202

Try using Method of grid

call method grid->set_ready_for_input

exporting

i_ready_for_input = x where x = 0(input disabled)

x = 1(input enabled)

Read only

Former Member
0 Kudos
202