October 13, 2010 at 6:43 pm
my company is using Microsoft CRM for its data management ..I have develop a report using Visual studio.now i need that if I click on a record in report,,it needs to be opened in CRM .
for example in report if someone click on a Scott record then it should open the corresponding record in CRM.
Thanks
October 13, 2010 at 11:54 pm
Are you talking about Report Navigation at URL?
October 14, 2010 at 4:10 pm
Yes ....Report Navigations ....when u go to properties window --and then Action ...GO TO URL..
so I want to configure a hyperlink on the names column that is when someone click on the name then it should go to the CRM and opne the that record.thanks
October 14, 2010 at 10:48 pm
Thanks , Actually i have found a solution .So i want to share it with you .The microsoft Dynamic CRM
is using a parameter "CRM_URL =CRM_URL should be set to the URL of Microsoft CRM. This is usually http://<crmserver>/CRMReports/viewer/drillopen.aspx."
and then set the text box action properties to
=IIf(IsNothing(Fields!opportunityid.Value), Nothing, String.Format(System.Globalization.CultureInfo.InvariantCulture, "{0}?ID={1}&LogicalName={2}", Parameters!CRM_URL.Value, Fields!opportunityid.Value, "opportunity"))
The following are the two site from where i got this info...
http://technet.microsoft.com/en-us/library/aa682806.aspx
http://social.microsoft.com/Forums/en/crmdevelopment/thread/809f4786-ea56-414f-bb6e-e960cc8c6f6c
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply