kakopappa
kakopappa

Reputation: 5095

open a customer record in Microsoft Dynamic from outside

I am new to Microsoft Dynamic CRM.

I have a .NET Winforms application which requires to open a customer record in Microsoft Dynamic CRM. I have no idea how to do this.

Please help.

Upvotes: 0

Views: 1240

Answers (2)

ccellar
ccellar

Reputation: 10344

fyi: see also URL Addressable Forms and Views

Upvotes: 0

BeardinaSuit
BeardinaSuit

Reputation: 901

If you want to get information of the customer in your winform application there is actually two ways of doing that, by going to the SQL server database directly and query filtered views, or by going through webservices.

If you want to open a customer record, simply get the GUID the same way, and open the page

/OrganizationName/sfa/accts/edit.aspx?id=The Guid of the Account

for Account, and

/OrganizationName/sfa/conts/edit.aspx?id=The Guid of the Contact

for Contacts.

For more information on querying filtered views, check out Filtered View Sample Code and for webservices

Upvotes: 1

Related Questions