cancel
Showing results for 
Search instead for 
Did you mean: 

BADi to Webdynpro screen

Former Member
0 Kudos

Hi All,

I have requirement to call ABAP-WEBDYNPRO screen from BADI. And i have to pass values from BAdi to Web application.

Can any one Please Provide detail steps.

Thanks & Regards,

Padma.

Accepted Solutions (1)

Accepted Solutions (1)

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

If you want to pass don't create the transaction code as described. Instead call the function module WDY_EXECUTE_IN_PLACE directly and specify INTERNALMODE = space. There is another importing parameter called PARAMETERS. This is where you can pass in your URL parameters. The function module will build the complete URL and will open the application in a new browser window using SAPGUI based SSO.

Former Member
0 Kudos

Thank you Thomas. Its Working now.

Regards,

Padma

Answers (1)

Answers (1)

Former Member
0 Kudos

hi Padma ,

u can refer the Thomas reply in the thread :

Consider function module WDY_EXECUTE_IN_PLACE with internal mode set to space. Or do like transaction codes like SOAMANAGER do and create a parameter transaction on top of the transaction code WDYID. You can then just call this tcode - all though underneight it just calls WDY_EXECUTE_IN_PLACE.

also look for the related thread:

.

regds,

amit

Former Member
0 Kudos

Hi Amit,

Thank you , i created a Tcode to my webdynpro application and called from BADi.

But my problem is I have catch the parameters passed by badi and place those values in webdypro.

Can you Please suggest further.

Thanks & Regards,

Padma

Former Member
0 Kudos

hi ,

hopefully Thomas wud be better able to comment on this

rgds,

amit