Issue Adding and Saving data to BO.
Summary:
Can anybody Please advise on this?
We are Fetching the data from Oracle Cloud BIP Report using the OIC Service Connection and posting the data to a BO using VBEnter Event.
We have used this JS Function to Post it to BO.
PageModule.prototype.boBody = function (arr) {
var arrFinal = [];
for(var i=0;i<arr.length;i++){
arrFinal.push({
"personId": arr[i].PERSONID,
"personName": arr[i].PERSONNAME});
}
return arrFinal;
};
We have the below two issues on Loading and Saving the data to BO:
1.When we Open the main-start page that many times the same data gets loaded to the BO
0