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

Saving a Value after selecting it from Drop Down list using ALV With OOPS..

Former Member
0 Likes
762

Hi,

I have developed a program for Drop Down List using ALV with OOPS concept.

Now i need to save the value after selecting it from Drop Down list...I am unable to

save it....!

Can anyone help me out in this regard.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
588

Try this

After changing the data you need to code this

call method grid->check_changed_data

importing

e_valid = gv_valid.

call method grid->refresh_table_display.

It will save the new data in to your passed table.

Regards,

Atul

Hi,

I have developed a program for Drop Down List using ALV with OOPS concept.

Now i need to save the value after selecting it from Drop Down list...I am unable to

save it....!

Can anyone help me out in this regard.

3 REPLIES 3
Read only

Former Member
0 Likes
589

Try this

After changing the data you need to code this

call method grid->check_changed_data

importing

e_valid = gv_valid.

call method grid->refresh_table_display.

It will save the new data in to your passed table.

Regards,

Atul

Read only

0 Likes
588

Hi,

Thank you for the answer which u have provided to me but i want to know "gv_valid" should be of what data type ??? and what value should we pass into it.

If u can help me out in this it could be helpful to me.

Read only

0 Likes
588

Hi Atul,

Thank you for the answer..!!

My problem is solved..