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

module pool

Former Member
0 Likes
636

hi friends ,

is there any option to create a variant in the module pool.like function modules

5 REPLIES 5
Read only

former_member632991
Active Contributor
0 Likes
579

Hi,

Checkout this weblog on SDN.

/people/alvaro.tejadagalindo/blog/2007/05/22/save-a-variant-from-a-dynpro-screen

Hope it helps.

Regards,

Sonika

Read only

former_member214288
Participant
0 Likes
579

Hi Premraj,

Screen Variants and Transaction Variants can be used to store screen values in Module Pool program. Screen Variants are for individual screens and a Transaction Variant is a group of screen variants. Using Transaction Variants you can control the flow of the screens as well.

http://help.sap.com/saphelp_nw04s/helpdata/en/7d/f63a10015111d396480000e82de14a/content.htm

Do let me know if I can be of further help on this and Do reward points if useful.

Regards,

Ram

Read only

Former Member
0 Likes
579

Hi,

Saving of VARIANT works for REPORT and not for MODULE POOL!!!!.

But there is a indirect way to have a variant for Module Pool. ie using SUBMIT stmt. I have not tried this but it worked....

Check the following SDN thread:

Regards,

Priyanka.

Read only

Former Member
0 Likes
579

hi

good

when you r designing a module pool program you are calling that particular screen in your abap program using the call screen sctatement,so while executing your abap report that screen also called and that time you can create a variant for that particular screen,module pool programming is itself not a executable program so you can't just simply create a varint for a module pool screen

thanks

mrutyun^

Read only

Former Member
0 Likes
579

Saving of VARIANT works for REPORT and not for MODULE POOL!!!!.

But there is a indirect way to have a variant for Module Pool. ie using SUBMIT stmt. pls check..it works