Posts

SAP CPI - Gather Config

Image
  Source xml Format is : <root>      <record></record>      <record></record>      <record></record> </root> and the result xml after Gather process is : <records>     <record></record>     <record></record> </record>

SAP CPI - OData Receiver Adapter causes issue for auto generated key property

Image
  SAP Note: 3000179 Set the message Property  SAP_ODataV2ExcludeAutoKey  to boolean value  true .

SAP CPI - Get HTTP Error Body

Image
Source Url: Getting HTTP Error Body

Rename json key

Reference from: https://stackoverflow.com/questions/13391579/how-to-rename-json-key

Update each dependency in package.json to the latest version

npm i -g npm-check-updates ncu -u npm install Reference from : stackoverflow.com

SAPUI5 - Client Model for sap.m.Select to show more that 100 rows

var oData = { results: [     { key: "1", text: "01" },      { key: "2", text: "02" },     ...      { key: "200", text: "200" } ] }; var oModel = new JSONModel(oData);  oModel.setSizeLimit((oData.results.length));  this.setModel(oModel, "myData"); < Select items = " {myData>/results} " >      < items >           < core : Item text = " {myData>text} " key = " {myData>key} " />      </ items >      < customData >           < core : CustomData key = " required " value = " true " ></ core : CustomData >      </ customData > </ Select >

Force download with fetch function