cancel
Showing results for 
Search instead for 
Did you mean: 

Internet Explorer cannot open the Internet Site http://.. Operation Aborted

11-18-2006 1:06 AM
396 views 4 comments Go to solution
0 Likes
SAP Managed Tags
Subscribe

I have the following error message when I try to launch some KM Navigation iViews that contains a javascript "More" (basically just a href onclick link that open another portal page).

Error Message:

"Internet Explorer cannot open the Internet Site http://.. Operation Aborted."

I search through different forum, someone suggested it was because of the javascript function.

Here is the html code with javascript function:

Code:


<html>
<head>
<script type="text/javascript">
<!--
function redirectNav() {
     var iViewID=parent.pageSupport.getIvuId(self);
	  var rid = iViewID.replace('pcd:' ,'ROLES://');
	  var iviewname= iViewID.substring(iViewID.lastIndexOf('.')+1,iViewID.length);
	  var pageID = '{xxx.xx.page.' + iviewname +'}';
	  return EPCM.doRelativeNavigate(rid,2, pageID,0,'', '', '', '','','',null);
}
//-->
</script>
</head>
<body width="100%">
<p align=right style='text-align:right'>
<A HREF="moreLink"
onclick="redirectNav();return false"><span class="urLnkResult urTxtStd" style="color:#000000;font-style:italic">More </span></a>
</p>
</body>
</html>

Initially, the javascript code was within the onclick"", I moved them outside the "body" tag after someone suggested that it was the cause of the problem. But after I have done so, it is still the same problem.

Then, I decided to remove the whole html file. Now, with a pure standard KM Navigation iView...guess what... the problem still remains.

More Details:

The KM Nav. iView is getting the resources from a taxonomy path. I just wonder it is something to do with the taxonomy indexing? or layoutset? or soemthing else?

We are currently using Netweaver 04s SP7.

If someone have this problem, and have solved the problem, please give some advices to me.

Maybe if you have the same problem, and not yet solved, sharing the experience will also help me to find out the real cause of the error.

Your help is truly appreciated.

Kent

Post with diagram illustration:

<a href="http://sapnetweaverforum.blogspot.com/2006/11/internet-explorer-cannot-open-internet.html">Internet Explorer cannot open the Internet Site http://.. Operation Aborted.</a>

Message was edited by:

Kent C.

0 Likes

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Likes

I wonder if it's related to the fact that it's really an https: site? Maybe there's some sort of popup blocking because of it being a secure site?

Former Member
0 Likes

I am not sure too. But if it will because of this, it should throw this error constantly every times we log in. But this really happen randomly on differrent iviews.

Kent

Former Member
0 Likes

Have you tried HTTPwatch? Free download from the Internet which allows you to see the HTTP traffic.

Answers (1)

Answers (1)

Former Member
0 Likes

Resolved.