Hello Experts,
We have an web UI developed for the end users to request roles or request to create account in IDM 7.2.
the web application is built on sap UI 5. While navigating through web pages frequently we would be receiving navigation error message.
No contact with the server: could not get the REST data for
The above error message is defined in our rest api loader java script file idmrestloader.js.
var Path = "$expand=entry&timeStamp="+new Date().getTime();
this.doRESTGet(Path, fnSucces, fnError);
function(oError) {
Navigation.gotoErrorPage({error: "No contact with the server: could not get the REST data with: "+Path });
}
My question is why this error is appearing every time.
Is it because of the way we are passing the code.
var param = ["$select=ID,"+"value,name,displayname"+""+"JOB_ID,COMPANY_ID","$expand=OWNER"];
or like
var params = ["$select=ID,DISPLAYNAME,DESCRIPTION"];
Can some one kindly please help me?
Regards,
DP