‎2007 Oct 10 2:20 PM
Hi All
I need to display an alv and after displaying some of the values in alv i have to input some values in three coloumns of this alv.If we click on the menu item proceed then I have to call other program by passing these alv value.Will you please help me to solve this.
Thank You.
Regards
Giri
‎2007 Oct 10 2:36 PM
Hi Giri,
On click of MENU option, u need to put in folowing code.
CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
IMPORTING
e_grid = ref1.
CALL METHOD ref1->check_changed_data.
After this, u will get the changed data in the internal table or structure (whatever)...
with this changed data, call the SUBMIT command passing the required data.
Thank you.
Award points if found useful.
‎2007 Oct 10 2:23 PM
Looking for examples at se38 using BCALVtree, have some good examples of ALV tree.
‎2007 Oct 10 2:36 PM
Hi Giri,
On click of MENU option, u need to put in folowing code.
CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
IMPORTING
e_grid = ref1.
CALL METHOD ref1->check_changed_data.
After this, u will get the changed data in the internal table or structure (whatever)...
with this changed data, call the SUBMIT command passing the required data.
Thank you.
Award points if found useful.