cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

calling tcode using link to url

Former Member
0 Likes
8,676

hi friends,

i want to call tcode SE38 in webdynpro application by using linktourl.

here i am going to

shuffler

system

webgui in internet service

and then right click on it then

publish->complete service.

and later i am going to tcode sicf

here i am giving the path /sap/bc/gui/sap/its/webgui and activate it

what is the need of giving the path here

and who is going to give the path as default....?

can anyone explain clearlly..

Thanks in advance

karunakar

Edited by: bkarunakar on Jul 19, 2011 3:56 PM

View Entire Topic
Former Member
0 Likes

Hi Karunakar,

Goto SICF.
Select the path as : /sap/bc/gui/sap/its/webgui
right click on webgui and click on "test" to execute the servies.it will open the sap screen in web browser.
**NOTE : if it gives an error you need to do some setting Reply if you want the steps for setting.**

create LINK to URL or LINK TO ACTION according to requirement.

use URL as   URL = 'http://<url>:portno/sap/bc/gui/sap/its/webgui?~TRANSACTION=SE38'. // 

"Note : you can find this url in ur WEBDYNPRO Application Properies
lo_api_component = wd_comp_controller->wd_get_api( ).
lo_window_manager = lo_api_component->get_window_manager( ).
ld_url = FINAL_URL.

CALL METHOD lo_window_manager->CREATE_EXTERNAL_WINDOW
EXPORTING URL = url
RECEIVING WINDOW = lo_window.

lo_window->open( ).

Also check this...

Cheers,

Kris.