Pytanie : Prąd Notować na Użytkownik

Hi

I am using CRM 4.0 i chcieć 4.0 sposób the prąd notować na użytkownik i ono textfield.

For przykład, fieldname być new_currentuser na the produkt forma. Gdy the forma ładować, ono pisać the prąd notować na użytkownik new_currentuser.

I widzieć wiele połączenie xml maszynopis che biedak pracować. (Notatka: jeżeli the śródpolny potrzeba lookup, pozwalać znać.)

Thanks

Odpowiedź : Prąd Notować na Użytkownik

Cześć apollo7,

Zadawalać widzieć dołączać kod.

Stawiać ono na onLoad wydarzenie w produkt forma. Teraz ono ładować the wartość w the pole ty pytać dla.

Pozwalać jeżeli ty potrzebować więcej pomoc z ono.

Uwzględnienie,
Chinmay

(1):
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
var xml = "" + 
"" + 
"" + 
 GenerateAuthenticationHeader () + "  "+ 
"    "+ 
"      "+ 
"    "+ 
"  "+ 
"" + 
"";

var xmlHttpRequest = nowy ActiveXObject ("Msxml2.XMLHTTP");

xmlHttpRequest.Open ("POCZTA"," /mscrmservices/2007/CrmService.asmx ", fałszywy);
xmlHttpRequest.setRequestHeader ("SOAPAction", "http://schemas.microsoft.com/crm/2007/WebServices/Execute ");
xmlHttpRequest.setRequestHeader ("Zadawalać-Typ", "tekst/xml; charset=utf-8");
xmlHttpRequest.setRequestHeader ("Zadawalać-Długość", xml.length);
xmlHttpRequest.send (xml);

var resultXml = xmlHttpRequest.responseXML;

var userId = resultXml.selectSingleNode ("//UserId") .text;

var xml = "" + 
"" + 
"" + 
 GenerateAuthenticationHeader () + "  "+ 
"    "+ 
"      systemuser" + 
"      "+ userId + "" + 
"      "+ 
"        "+ 
"          firstname" + 
"        "+ 
"      "+ 
"    "+ 
"  "+ 
"" + 
"";

var xmlHttpRequest = nowy ActiveXObject ("Msxml2.XMLHTTP");

xmlHttpRequest.Open ("POCZTA"," /mscrmservices/2007/CrmService.asmx ", fałszywy);
xmlHttpRequest.setRequestHeader ("SOAPAction", "http://schemas.microsoft.com/crm/2007/WebServices/Retrieve ");
xmlHttpRequest.setRequestHeader ("Zadawalać-Typ", "tekst/xml; charset=utf-8");
xmlHttpRequest.setRequestHeader ("Zadawalać-Długość", xml.length);
xmlHttpRequest.send (xml);

var resultXml = xmlHttpRequest.responseXML;

crmForm.all.new_currentuser.DataValue = resultXml.selectSingleNode ("//q1: firstname") .text;
Inne rozwiązania  
 
programming4us programming4us