cancel
Showing results for 
Search instead for 
Did you mean: 

In SAPUI5 calling external API trough internet explorer browser response is empty .

Former Member
0 Kudos
293

SAPUI5 calling external API trough internet explorer browser response is empty . But in chrome and edge browser proper response data we getting.

Hers the sudeo code:-

var oModel = new sap.ui.model.json.JSONModel();

sap.viz.api.env.Format.numericFormatter(complianceChartFormatter); oModel.loadData(url, oParameters, true, "GET", true, "true", header); oModel.setDefaultBindingMode("OneWay");

Accepted Solutions (1)

Accepted Solutions (1)

Ivan-Mirisola
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hi Srinivasulu,

Did you check SAPUI5 browser compatibility already? If so, you should open an incident at SAP support system for further investigation as this might be a bug in the SAPUI5 libraries that needs to be corrected for IE only.

Regards,
Ivan

Answers (1)

Answers (1)

christian102094
Participant
0 Kudos

Hello,

Make sure all the Javascript code you are using is Internet Explorer compatible. Try debugging the API call in the IE debugger line by line and see if you get any error.

I once used ".includes()" which worked fine in Chrome and Mozilla, but not in IE. (https://stackoverflow.com/questions/36574351/includes-not-working-in-internet-explorer)

Regards,

Christian Tapia S.

Former Member
0 Kudos

Hello Christian,

Thanks for the update .

But i tired multiple ways as above also. But no luck.

Thanks,

Srini