top of page
Search

User view, Disabled users consuming licenses

  • Jun 3, 2014
  • 1 min read

You might have seen the view, Disabled users consuming licenses for users and wondered what it means. In CRM on-premise a disabled user does not require a license so what is the view showing.

If you look at the definition of the view in Advanced Find you see an error because Advanced Find can't show the query. Delving in the database, shows that the FetchXML for the query is:


<fetch version="1.0" output-format="xml-platform" mapping="logical"><entityname="systemuser">
<order attribute="fullname" descending="false" />
<attribute name="fullname" />
<attribute name="systemuserid" />
<attribute name ="businessunitid" />
<attribute name="internalemailaddress" />
<filter type="and">
<condition attribute="fullname" operator="ne" value="SYSTEM" />
<condition attribute="fullname" operator="ne" value="INTEGRATION" />
<condition attribute="isdisabled" operator="eq" value="1" />
<condition attribute="islicensed" operator="eq"v alue="1" />
</filter>
</entity>
</fetch>

The interesting attribute is islicensed. I think this field is only set when using CRM Online for users who have been allocated a license in the Online platform. So the view is showing users who have been disabled in CRM but are still allocated a license in the Online platform. So, really if you see any users in this view you are spending money unnecessarily!

 
 
 

Recent Posts

See All
New AB Exams from Microsoft

Four new exams with related courses and the prefix AB were released by Microsoft during December 2025 and January 2026. These are summarized in the table below. Exam Study Guide Title Link to Course A

 
 
 

Comments


bottom of page