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

Former Member
0 Likes
397

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
361

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.

2 REPLIES 2
Read only

Former Member
0 Likes
361

Looking for examples at se38 using BCALVtree, have some good examples of ALV tree.

Read only

Former Member
0 Likes
362

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.