cancel
Showing results for 
Search instead for 
Did you mean: 

Name of Function Module used by WebDynpro Conversion Tool Wizard

Former Member
0 Kudos

Hi experts,

we know that there is a web dynpro conversion wizard tool which converts a normal module pool program's

view into a corresponding view statically. What is the name of the function module used by this wizard.

Can I include that function module in my own ABAP program?

Edited by: Adithya K Ramesh on Oct 6, 2010 3:35 PM

Accepted Solutions (0)

Answers (1)

Answers (1)

ChrisPaine
Active Contributor
0 Kudos

class CL_WDC_DYNPRO_IMPORT has a method called IF_WDY_WB_DESIGNTIME_TEMPLATE~APPLY_TEMPLATE. This is what does the magic.

How/why you'd want to use this yourself is beyond my understanding , but my guess is that if you couldn't find this class yourself then you will really struggle to get any use out of it.

It should also be noted that it is not part of the package interface - so is not really "released" for use. There are other classes in the same package that are released - but I'm still not sure you'd want to use them.

It is worth thinking about why you'd want to do an auto convert of a standard dynpro screen - in most cases you should instead be thinking about a redesign to better fit the new UI - SAP themselves have "banned" the use of the autoconvert functionality in internal development.

Chris

Former Member
0 Kudos

Hi Chris,

thanks for the info. Can you please tell me the names of those other packages as well?