Posts

SAP CPI: Recover artifact in SAP CPI (Case Delete)

Image
Reference from:  Recover package in SAP CPI : Deleted by Mistake 1) Go to Manage Integration Content (Monitor -> Integrations and APIs -> Manage Integration Content)  2)Select the iflow that you have deleted or iflow you want to recover 3) On the right corner next to restart, you have drop down. select download 4) Jar file gets downloaded and you can upload the same Jar file in the Design       Design -> Intergrations and APIs -> Select your Package -> Add New API -> 

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 >