Application Development 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: 

pass callback function to class object

Former Member
0 Kudos

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

former_member188685
Active Contributor
0 Kudos

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

BCALV_TEST_GRID_EVENTS

0 Kudos

thanks