cancel
Showing results for 
Search instead for 
Did you mean: 

calling bsp cross abap application server

jerome_lim
Participant
0 Kudos

Hi,

I have a question about bsp application.

I have 2 bsp application built in different sap abap application server, say one on SRM, one on ECC.

I'd like to add the url in the bsp on SRM to start another bsp application in ECC.

Is it possible to do this ?

or is it possible to include the ECC bsp in the div section of CRM application ?

Thank you.

Benj.

Accepted Solutions (0)

Answers (1)

Answers (1)

AbhishekSharma
Active Contributor
0 Kudos

Hi Jerome,

You can use HTML FRAME tag to open URL of ECC application into your CRM BSP application only if both the application are having same domain name.

Applications running on different domain names will not work due to "Same Origin Policy".

https://en.wikipedia.org/wiki/Same-origin_policy

Below is example of how to use IFRAME tag:

<html>

<body>

<iframe id="myFrame" src="http://domain.com/yourECCpage.html"></iframe>

</body>

</html>

You can try example

http://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_iframe_src2

Thanks-

Abhishek