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

pass callback function to class object

Former Member
0 Likes
898

There is a FORM in program.

I need to pass FORM's name to class object, and this object to run FORM.

Like it done in ALV:

CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'

EXPORTING

I_CALLBACK_PROGRAM = SY-CPROG

I_CALLBACK_USER_COMMAND = 'MY_FROM'

...

2 REPLIES 2
Read only

Former Member
0 Likes
515

here every thing will be done using the Event handling(local classes based on event definition) check this program

BCALV_TEST_GRID_EVENTS

Read only

0 Likes
515

thanks