Hi,
I am new to to customization in crm 2011 on premise.
I have to fetch value from let say contract line on contract page. By using javascript what is the process to get value from any entity by using javascript.
Some where I have got some code in that they are creating XML and using
var qryXml = "" + "<?xml version=\"1.0\" encoding=\"utf-8\"?>" +
"<soap:Envelope xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">" +
authenticationHeader +
" <soap:Body>" +
" <RetrieveMultiple xmlns=\"http://schemas.microsoft.com/crm/2007/WebServices\">" +
" <query xmlns:q1='http://schemas.microsoft.com/crm/2006/Query' xsi:type='q1:QueryExpression\'>" +
" <q1:EntityName>contractdetail</q1:EntityName>" +
" <q1:ColumnSet xsi:type=\"q1:ColumnSet\">" +
" <q1:Attributes>" +
this type of code, It is a part of the whole code I got.
please send me some link to read the process and how to pass value in web service to get the value.
Thanks