Announcements
No record found.
Would it be possible to build an activities report that includes both the regular appointments as well as any logged as task etc and emails etc?
*This post is locked for comments
You can develop using out of box CRM Report tool (Report Wizard) or using SSRS you can develop any complex report.
https://dynamicscrmgirl.wordpress.com/2014/06/29/crm-2013-ssrs-report-and-sub-reports/
OR CRM also offer out of box Activity Report. Kindly review if its work for you then you dont need to develop
Please mark suggested answer if it resolve or guide you.
One SQL statement:
select b.ActivityCount, Entity.PhysicalName, b.ActivityTypeCode
from Entity
join (select ActivityTypeCode, count(ActivityTypeCode) as ActivityCount from ActivityPointer group by ActivityTypeCode) as b on Entity.ObjectTypeCode = b.ActivityTypeCode
using 'Union' to do:
select 'All Appointments', Count(*) from AppointmentUnionselect 'All Tasks', Count(*) from TaskUnionselect 'All Emails', Count(*) from Email
Where do i stick this SQL statement?
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Stars!
Thanks to all of our 2025 Community Spotlight stars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
JS-09031509-0 3
AS-17030037-0 2
Mark Eckert 2