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

ABAP OO using module pool

Former Member
0 Likes
1,053

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 .

1 REPLY 1
Read only

Former Member
0 Likes
586

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