Hi,
I have designed an alv with 10 columns,in which 5 are editable fields.
In user command , i have given
case sy-ucomm.
when '&DATA_SAVE'.
Loop at itab.
<THE ENTERED DATA COMING PROPERLY>
endlloop.
But if i give a new button in toolbar ('&SAVE'),The data is not coming in internal table.
I need to know that,if only &DATA_SAVE given,the data will be copied inside the program.
How to use different user command names apart from the &DATA_SAVE to save the data.