cancel
Showing results for 
Search instead for 
Did you mean: 

How to calling ABAP Webdypro pages from SAP GUI ?

Former Member
0 Kudos

Hi,

I am quite new in ABAP webdypro development, need you advise on how to calling webdynpro abap page from SAP GUI.

what i meant is how to program that. so i can have program to display abap webdynpro page from sap - gui.

Thank you and best regards

fernand

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi all,

thank you for your response, what i meant is how to call webdynpro application form abap.

so if i am using this function CALL FUNCTION 'CALL_BROWSER' how to get the ABAP webdypro link ?

is it the one in the test function ?

please advise.

Best Regards

Fernand

Former Member
0 Kudos

hi ,

u can get the URL of ur Web Dynpro APPLICATION.

refer this online help :

http://help.sap.com/saphelp_nw70/helpdata/en/84/e8e942ccd85804e10000000a155106/content.htm

for class to generate URL , u cn refer many related threads on forum as well

thn as Manas pointed very correctly , using the method CALL_BROWSER , u can call ur WD application from ABAP

by passing the generated URL as parameter .

regards,

amit

Former Member
0 Kudos

Refer this to get URL of Webdynpro Application :

CALL METHOD cl_wd_utilities=>construct_wd_url

EXPORTING

application_name = 'Z102044_BAPI'

IMPORTING

out_absolute_url = str.

str - type string.

'Z102044_BAPI' is the name of your webdynpro application

Former Member
0 Kudos

Please try creating a external Window and call your URL

Former Member
0 Kudos

hi,

do u mean , how to develp ur WD ABAP component ?

if yes :

1 go to transaction se80

2 select WD Comp / Intf.

3 create new component there and assign it package

4 create ur views in the component , different layouts in the views

5 create application for ur component to run it .

if u mean "how to develop ur WDA componetnt " , thn these links cn direct u :

Main Topic Page:

http://sdn.sap.com/irj/sdn/nw-wdabap#section2

Tutorials for Beginners:

[original link is broken]

eLearning Videos:

/people/thomas.jung/blog/2006/06/20/web-dynpro-abap-demonstration-videos

wud it suffice , or u mean smthing else ?

regards,

amit

Former Member
0 Kudos

Try using method CALL_BROWSER

CALL FUNCTION 'CALL_BROWSER'
  EXPORTING
    URL                          =  lv_url   "Your webdunpro application URL
  EXCEPTIONS
   FRONTEND_NOT_SUPPORTED       = 1
   FRONTEND_ERROR               = 2
   PROG_NOT_FOUND               = 3
   NO_BATCH                     = 4
   UNSPECIFIED_ERROR            = 5
   OTHERS                       = 6.

Regards

Manas Dua