2015 Jun 19 1:06 PM
Hi Expert,
I have create two Dynpro screen in function module . I want to call this screen in ABAP OO in global class e.g event method . When user click whatever number then my first dynpro screen as popup come .With first popup i have action e.g Radio Button ( e.g Save or Delete Option ) when click radio button save then second dynpro screen call.
I want to do in ABAP OO in global class.
Please give some example or idea .
2015 Jun 19 2:47 PM
Hello Muhammad,
You cannot create a screen in class. Therefore, you cannot call screen in global class because it cannot be in a class. However, you can create a function group and related screens in the function group. Then, you can create a function module that calls your screens. Finally, you can call the function modules that you created in your class methods. Therefore, you can call screens in your global class methods.
The key is Function Group and Function Modules and call them in your class.
Regards,
Barış Arslan