cancel
Showing results for 
Search instead for 
Did you mean: 

Issue with ITS adding [] to my URL

Former Member
0 Kudos

For some reason it seems like IE doens't like URL's with brackets in them.

I'm using wgateURL() to generate my url but once I start to add the parameters when it actually renders it adds a [1] to the end of the parameter.

?forcetarget[1]=yes&okcode[1]=MAAD

The wgateURL looks like this: `wgateURL(~forcetarget="yes", ~OkCode="MAAD")`

So is there a way to prevent it from adding in the [1]'s. Internet Explorer is the only browser that seems to fuss about this since I've tested this with Firefox, Safari, Chrome and Opera with success.

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member316351
Active Contributor
0 Kudos

Hello,

I think you should encode the square brackets, not remove them. Try writeEnc or strenc on the URL, note 922792.

Edgar

Former Member
0 Kudos

I can't seem to bring up the note, do you have a direct link to it?

former_member316351
Active Contributor
0 Kudos

The note doesn't have much in it, just a mention of the functions. You can actually find more on the functions in the SAP help:

http://help.sap.com/erp2005_ehp_04/helpdata/EN/5f/1fb19a4aee11d189740000e8322d00/frameset.htm

Former Member
0 Kudos

Well the issue seems like after our last patching cycle IE doesn't like the javascript used to create a form and submit it.

The okcode doesn't get transfered to SAP to start running the ITS code. I'm not sure if there are any sap notes out there that pertain to ITS and IE incompatiblity issues.

former_member194364
Active Contributor
0 Kudos

What is the exact IE version you are currently using? and what version where you on prior to that?

See the following note:

[Note 325616 - ITS 6.20 System requirements|https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=325616]

on the supported platforms and Web Browsers for the SAP Standalone ITS 6.20

The supported platforms and Web Browsers for the SAP Integrated

ITS 6.40 and higher are the same platforms supported by the SAP

Web Application Server. Have a look at http://service.sap.com/pam

for more information.

Former Member
0 Kudos

Found out the problem was actually some fields that were suppose to be NULL weren't actually null and had the string "NULL" in them and therefore when it was being submitted it was causing issues.