This is Generic error message from CRM Custom Action Plug-in, Any unhandled exception or any exception in Custom plugin, this will return the error message : There is no active transaction. This error is usually caused by custom plug-ins that ignore errors from service calls and continue processing.
Open Visual Studio create a report project and add new report Go to Data Source provide Embedded Connection Type : and Credentials as below(If it is online CRM connection type can be different). Create a Query and add it in Data Set Create a table and add columns to the table as below Watch this video help to create paging in report https://www.youtube.com/watch?v=gvGvfKxy1r0 Right click on the report column "Company Name" select properties -> Select Action -> Go to Report Click on expression button and Add this Expression " =First(Fields!orgUrl.Value, "GetOrgUrl")+"/CRMReports/viewer/drillopen.aspx?ID={" & CType(Fields!companyId.Value, GUID).ToString &"}&LogicalName=account" "(In this expression i created one more Data Set to get organisation URL from configuration Record). Add Report in CRM Create a html Webresouce in CRM <html> <head...
Comments
Post a Comment