Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Here is my code, I get an object error onLoad. Please help.

function Setlook()
{

var lookup = new Object();
var lookupValue = new Array();
lookup.id = "7b31D4D998-F124-E111-96C3-1CC1DEEA";
lookup.entityType = 1022;
lookup.name = "Default";
lookupValue[0] = lookup;
Xrm.Page.getAttribute(“pricelevelid”).setValue(lookupValue);

}
share|improve this question
The quote marks here... getAttribute(“pricelevelid”) ...don't look right... Compare “ ” to " ". Not sure it makes a difference or not. – David Spence Jan 8 '12 at 13:30

3 Answers

The code itself looks correct, but the GUID of the lookup doesn't. It doesn't have the right format nor does it have the right number of characters (32). Fixing that should eliminate the error.

share|improve this answer
id=%7b31D4D998-F124-E111-96C3-1CC1DEE8EA2D%7d> can anyone tell me what part of this is the id. I think I must be picking up the wrong 32 characters. Please help – Andrew Woodard Jan 8 '12 at 22:11
@Andrew: From Wikipedia, "The value of a GUID is represented as a 32-character hexadecimal string, such as {21EC2020-3AEA-1069-A2DD-08002B30309D}". "%7b" is the URL escape code for "{", and "%7d" is the escape code for "}", so together, your GUID is 31D4D998-F124-E111-96C3-1CC1DEE8EA2D or {31D4D998-F124-E111-96C3-1CC1DEE8EA2D}. – Peter Majeed Jan 8 '12 at 23:06
up vote 0 down vote accepted

Here is the proper syntax, the important thing is to have the correct .typename

function Setlook()
{


var value = new Array();
value[0] = new Object();
value[0].id = '{31D4D998-F124-E111-96C3-1CC1DEE8EC2D}';
value[0].name = 'Default';
value[0].typename = 'pricelevel';

Xrm.Page.getAttribute("pricelevelid").setValue(value);

}
share|improve this answer

Im trying to pass my QuoteID and retrieve a field "Total amount" from Quote Form. I mentioned my Quote ID:QUO-01006-000000. It is a system generated value and trying to retrieve Total Amount.So can anyone tell me how to retrieve using javascript with SOAP Endpoint (CRM Webservices). The error it shows is:Accessed denied. And while debugging, it shows that the quoteId is undefined.

Pls Help...

share|improve this answer
please show some of your code, which makes you problems. From your question we can only extract very few informations. – philnate Apr 9 at 11:50
Im using MS Dynamics CRM Online integrated with Office 365. Im using SOAP Endpoint(Java script) to call Crm Web services to Retrieve QUOTE data using Quote ID(CRM Auto generated field). I tried using SOAP UI but i did not get any response. So i tried using javascript. Here goes my code- – Manu Apr 10 at 7:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.