Hi Guys,
I have JS on form which runs on load to fetch related record details.
I am using "Xrm.WebApi.retrieveRecord" which works as expected on Web browsers.
However, the same form is not working on Sales-hub App in Mobile device (IPad).
It goes to error function with no error message. I can see alert on mobile device without any error message
Posting my code below for reference,
======================================================
var selectquery = "$select=opportunityid,name";
Xrm.WebApi.retrieveRecord("opportunities", recordID, "?" + selectquery).then(
function success(result) {
// perform operations on record retrieval
if (result) {
var opportunityId = result["opportunityid"];
var opportunityName = result["name"];
Xrm.Utility.alertDialog(opportunityName);
}
},
function (error) {
Xrm.Utility.alertDialog("Failed to get the Fetch Opportunity" + error.message);
return false;
}
);
any suggestions guys.
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,253 Super User 2024 Season 2
Martin Dráb 230,188 Most Valuable Professional
nmaenpaa 101,156