Hi ,
I am looking for a custom SSRS report to show me the SCCM Co-managed devices exist in a collection specific .Can someone help me to give me a SQL report please ?
Hi ,
I am looking for a custom SSRS report to show me the SCCM Co-managed devices exist in a collection specific .Can someone help me to give me a SQL report please ?
you can add a new column/attribute with co-managed in the device section, it will show Yes or No. Have you tried this?

Regards,
Eswar
www.eskonr.com
Thanks a lot for the response .. Yes I am aware of this settings .. But My project needs a SSRS report so that unnecessary console access should be restricted .. :(
For SSRS report, the co-management information is stored in SQL table ClientCoManagementState. You try something the SQL code something like below, but you can expand this further to get more data from various SQL views.
SELECT
sv.Netbios_Name0,
ClientCoManagementState.ComgmtEnabled,
ClientCoManagementState.CoMgmtWorkloadFlags,
ClientCoManagementState.MDMEnrolled,
ClientCoManagementState.ComgmtPolicyReceived,
ClientCoManagementState.LastMessageTime,
ClientCoManagementState.LastMessageStateID,
ClientCoManagementState.MDMRegistrationKind,
ClientCoManagementState.ScheduledEnrollTime,
ClientCoManagementState.EnrollmentBeginTime,
ClientCoManagementState.EnrollmentEndTime,
ClientCoManagementState.EnrollmentStatusCode,
ClientCoManagementState.EnrollmentErrorDetail
FROM
ClientCoManagementState
INNER JOIN v_R_System_Valid sv ON ClientCoManagementState.MachineID = sv.ResourceID
Thanks,
Eswar
9 people are following this question.