Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
811 views3 pages

Call URL From SAP Webdynpro fCCor ABAP

This document describes how to call a URL from an ABAP web dynpro action. It provides code samples to call a URL in a new popup window or in the same window. The code samples use Web Dynpro components and methods to get the window manager and frontend window controller and call the URL, allowing ABAP functionality to execute first before opening the URL.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
811 views3 pages

Call URL From SAP Webdynpro fCCor ABAP

This document describes how to call a URL from an ABAP web dynpro action. It provides code samples to call a URL in a new popup window or in the same window. The code samples use Web Dynpro components and methods to get the window manager and frontend window controller and call the URL, allowing ABAP functionality to execute first before opening the URL.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

3/20/2015

CallURLfromSAPWebdynproforABAP

Comments(0)

CallURLfromSAPWebdynproforABAPACTION
ItisasimpleprocesstocreateaLinktoURLUI
elementononeofyourwdpviewswhichpointstoa
websiteURLbutwhatifyouwanttouseandABAP
webdynproactiontoperformsomeABAP
functionalityfirstandthencalltheURL.Thesimple
answerisaddthefollowingcodetoyourACTION
methodanditwillcalldisplayyourdesiredURLlink
eitherinthecurrentwebpageorcallanewpage/
popupanddisplayitinthat.
CodetocallaURLinnewpopupwindow
data:lo_window_managertyperefto
if_wd_window_manager.
data:lo_api_componenttyperefto
if_wd_component.
data:lo_windowtypereftoif_wd_window.
data:ld_urltypestring.
lo_api_component=wd_comp_controller>wd_get_api().
lo_window_manager=lo_api_component>get_window_manager().
ld_url='http://www.sapdev.co.uk'.
CALLMETHODlo_window_manager>CREATE_EXTERNAL_WINDOW
EXPORTING
URL=ld_url"'http://www.sapdev.co.uk'
RECEIVING
WINDOW=lo_window.
lo_window>open().

Beginners
BeginnersGuideto
learningSAP
development
startingwith
loggingintoSAP

ABAP

SAPDevelopment
toolsand
techniques
includingABAP
code

Reporting

ABAPspecificSAP
Development
techniquesand
examplesource
code

Web
Development

Module
Areas

Webspecific
technologies.
BSP/ABAP,HTML,
CSS,JS,Ajax,Web
Dynpro...

SAPmodulespecific
development
technologiesand
exampleABAP
sourcecode

EnhanceSAP

Repository
SAPrepository
objectssuchasT
Codes,Tables,
Programs,Reports,
FM's,Methodsetc..

CodetocallaURLinsamewindow
data:lo_frontend_windowtypereftoig_frontend_window,
ld_urltypestring.

SAP
Development

OnlineTraining

lo_frontend_window=wd_this>get_frontend_window_ctr().
selectsingleurl
fromzurlconfig
intold_url
wheresysideqsysysid.
ld_url='http://www.sapdev.co.uk'.
lo_frontend_window>fire_op_approver_plg(
*close_window='X'
url=ld_url"close_windowmustbe=''
).

Forthisversion(callstheurlinthesamewindow)youwillneedtoaddthecontrollerforthecurrent
windowtotheviewwithinthepropertiestab(i.e.inthisexamplethecurrentwindowis
FRONTEND_WINDOW).Youalsoneedtochangethereferencesinthecodeabovetomatchthename
ofyourwindow.

CV/Resume
Postyour
CV/Resumeand
seeexistingCV's
andavailablejobs.

SAPTraining

Cookieshelpprovidethebestexperienceonoursite.Bycontinuingto
usethissiteyouagreetoouruseofcookies. Learnmore
Ok

http://www.sapdev.co.uk/sapwebapps/sapwebdynpro/wdp_callurl.htm

Security&
Auth
ImplementingSAP
securityand
authorisation
checks

1/3

3/20/2015

CallURLfromSAPWebdynproforABAP
WHAT'STHIS?

ALSOONSAPDEVELOPMENT

ABAP2comments

ABAPReportingExamplecodeand
informationonvarious1comment

ScreenparameterinformationforHTML
andTEXTfilemanipulation1comment

FormattingadatevariableABAPSAP
1comment

JointheMailingList
Enteryournameandemail
addressbelow:
Name:

0Comments
Recommend

SAPDevelopment

Login

Email:
Subscribe

Unsubscribe

GO

Share

SortbyNewest

GetyourFreeMailingList
byBravenet.com

Startthediscussion

Bethefirsttocomment.

Subscribe

AddDisqustoyoursite

Privacy

SAPDevelopment Netweaver ABAPWDP WDPALV BSP WebServices SAPPortal VisualComposer

http://www.sapdev.co.uk/sapwebapps/sapwebdynpro/wdp_callurl.htm

2/3

3/20/2015

CallURLfromSAPWebdynproforABAP

LatestjobsfromERPJobboard.com
SAPISRetailsProfessional
ISRcertificationispreferred.GoodCommunication,JoiningLocation
Mumbai/BangaloreExp:.SAPISRetailsProfessionalforCMM...Wed,18Mar2015
17:00:000700
SAPFICO
SAPFIExp.(Must)Min2E2Eimplementation&ForAMMin.2support.Special
exposuretoCosting,Treasury,General...Wed,18Mar201517:00:000700
SAPFunctionalAnalyst
Candidateshouldhaveworkingexperiencewithbelowfunction.MinimumEducation
Level.Resumeshouldhaveclearlymentioned...Wed,18Mar201517:00:000700
SAPISRetailsProfessional
ISRcertificationispreferred.GoodCommunication,JoiningLocation
Mumbai/BangaloreExp:.SAPISRetailsProfessionalforCMM...Wed,18Mar2015
17:00:000700
SAPFICO
Like

Tweet

Share

ContactUs Partners TermsofService PrivacyPolicy Advertise

http://www.sapdev.co.uk/sapwebapps/sapwebdynpro/wdp_callurl.htm

3/3

You might also like