cancel
Showing results for 
Search instead for 
Did you mean: 

How to find ITS URL in R/3 system

0 Kudos

Hi All,

I want to know from where one can read the ITS URL in an R/3 system?

I know this question has been asked frequently but all threads lead to a Blog which does not come up.

Please help.

Thanks in advance.

Regards,

Saurabh

Accepted Solutions (1)

Accepted Solutions (1)

former_member689397
Active Participant
0 Kudos

Hi Saurabh,

You can find the ITS URL in R/3 system below path in T.code SICF If you are using ECC5.0(WAS6.40)/ECC6.0(WAS7.0) system

SICF->default_host/sap/bc/gui/sap/its/<servicename>

Or

if you are using R/34.7 (WAS6.20 ie.external ITS) you can find from Utilities->Settings toolbar (if external ITS is connect with R/3 and RFC working fine)

Settings->Iinternet Transaction Server->Test Service

Server:

Path:

Thanx

suriya

0 Kudos

Hi Suriya,

Thanks for the SICF details. Actually what I am looking for is say a database table or a function module which will return me the server name and port, basically the initial part of the URL of any service. Can you please help here?

Thanks & Regards,

Saurabh

athavanraja
Active Contributor
0 Kudos

you can use the following function module to get the same.

 call function 'TH_GET_VIRT_HOST_DATA'
   exporting
     protocol             = 1
     virt_idx             = 0
*   LOCAL                = 1
  importing
    hostname             = server
    port                 = port
  exceptions
    not_found            = 1
    internal_error       = 2
    others               = 3 .

Note: this is for integrated ITS

Regards

Raja

Message was edited by:

Durairaj Athavan Raja

athavanraja
Active Contributor
0 Kudos

another FM to get the complete url with option to specify service, transaction , client, language, etc

SITSP_GET_URL

Regards

Raja

0 Kudos

Hi Raja,

Thanks a ton for your reply!!

One more question, how can I find out that HTTP or HTTPS is being used?

Thanks again,

Saurabh

former_member689397
Active Participant
0 Kudos

Hi Saurabh,

You can find in R/3 T.code: SMICM->GoTO (From toolbar) ->Service (ICM Monitor -Service Display) and you can find from SE80->Utilities (Toolbar) -> Settings->Internet Transaction Server-> Test Service

If you are using HTTPS please check the check box 'Use HTTPS' or leave it blank for HTTP.

Thnx

Suriya.

Former Member
0 Kudos

Hi,

We have load balancing situation. We run a program and construct ITS url and send this to users in email. But we want this URL to be from a specific server. Where do we get this URL from?

Here is the situation. We have two servers A and B. A is the main server and B is used as load balancing server. But when we run this program that constructs URL it may run in A or B. We want to information related to server A all the time. Where do we get it from? These function modules you suggested here do not work in this situation.

Please help.

SM

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

To access the ITS,in the IE the url would be:

In case of internal ITS:

http://hostname:portno/sap/bc/gui/sap/its/<servicename>/!

In case of external ITS:

http://hostname:portno/scripts/wgate/<service name>/!

BR,

Disha.

Pls reward points for useful answers.