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

Former Member
0 Likes
368

Hi Experts,

I need some clarification on ALV grid structure. I have created an ALV Grid in Module Pool. I have an icon in the Application tool bar. If i click the icon I want an extra row to be inserted in the ALV grid. This should directly reflect in the Database table that i have used in the ALV grid. Can you please help me on this.?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
332

Look at the sample program BCALV_EDIT_04. Once you have got your head round this you will need to introduce some trigger that lets you knwo the user has saved the new entry. When this event/trigger has been called then you can add the code to insert the row to your DB table. An obvious choice would be to add a save icon to your ALV's toolbar - again the sample BCALV porgrams will show you how to do this.

Hi Experts,

I need some clarification on ALV grid structure. I have created an ALV Grid in Module Pool. I have an icon in the Application tool bar. If i click the icon I want an extra row to be inserted in the ALV grid. This should directly reflect in the Database table that i have used in the ALV grid. Can you please help me on this.?

2 REPLIES 2
Read only

jayanthi_jayaraman
Active Contributor
0 Likes
332

Hi,

Before clicking use no_out = 'X' to hide the field.

On clicking the button, try making no_out = space.

Read only

Former Member
0 Likes
333

Look at the sample program BCALV_EDIT_04. Once you have got your head round this you will need to introduce some trigger that lets you knwo the user has saved the new entry. When this event/trigger has been called then you can add the code to insert the row to your DB table. An obvious choice would be to add a save icon to your ALV's toolbar - again the sample BCALV porgrams will show you how to do this.