Skip to main content
Post a question

Notifications

Community site session details

Community site session details

Session Id : 4nRMrlzbv4FieTFuqP5ynI
Microsoft Dynamics CRM (Archived)

Uncaught ReferenceError: Xrm is not defined

Like (0) ShareShare
ReportReport
Posted on 9 Oct 2017 21:55:33 by

Within a standard ASP.NET (WebAPI) project, I created this web page for an external site but I am encountering this: Uncaught ReferenceError: Xrm is not defined
Any help will be appreciated.

<!DOCTYPE html>
<html>
<head>
<script src="Scripts/jquery-3.2.1.js"></script>
<title></title>
<meta charset="utf-8" />
<script>
$(document).ready(function () {
var accountlist = $('accountlist');
$('#Getaccounts').click(function () {
console.log("testing 1234")
$.ajax({
type: "GET",
contentType: "application/json; charset=utf-8",
datatype: "json",
url: Xrm.Page.context.getClientUrl() + "/api/data/v8.0/accounts?$select=accountid,name",
beforeSend: function (XMLHttpRequest) {
XMLHttpRequest.setRequestHeader("OData-MaxVersion", "4.0");
XMLHttpRequest.setRequestHeader("OData-Version", "4.0");
XMLHttpRequest.setRequestHeader("Accept", "application/json");
XMLHttpRequest.setRequestHeader("Prefer", "odata.include-annotations=\"*\"");
},
async: true,
success: function (data, textStatus, xhr) {
var results = data;
for (var i = 0; i < results.value.length; i++) {
var accountid = results.value[i]["accountid"];
var name = results.value[i]["name"];
accountlist.append('<li>' + name + '</li>');
}
},
error: function (xhr, textStatus, errorThrown) {
Xrm.Utility.alertDialog(textStatus + " " + errorThrown);
}
});
});
});
</script>
</head>
<body>
<input id="Getaccounts" type="button" value="Getaccounts" />
<ul id="accountlist " />
</body>
</html>

*This post is locked for comments

  • Suggested answer
    Fameeda Yaseen Profile Picture
    423 on 01 Jan 2019 at 05:15:18
    RE: Uncaught ReferenceError: Xrm is not defined

    you can use :

    window.parent.Xrm.Utility.alertDialog in place of Xrm.Utility.alertDialog.

  • Verified answer
    Gopalan Bhuvanesh Profile Picture
    11,401 on 09 Oct 2017 at 22:14:35
    RE: Uncaught ReferenceError: Xrm is not defined

    Hi

    You cannot use Xrm.Page and Xrm.Utility JS library functions (SDK) in an external application.

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

🌸 Community Spring Festival 2025 Challenge 🌸

WIN Power Platform Community Conference 2025 tickets!

Jonas ”Jones” Melgaard – Community Spotlight

We are honored to recognize Jonas "Jones" Melgaard as our April 2025…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 293,364 Super User 2025 Season 1

#2
Martin Dráb Profile Picture

Martin Dráb 232,524 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,158 Moderator

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans
Loading complete