CRM Microsoft License Types - CalType - CRM 2013-2016
Licensing... that thing that Microsoft ask us time to time...
This post is more a reminder to myself than actually a post for posterity in order to remember what are the codes of Microsoft CRM licensing types or "CalType" in the entity "systemuser". Since i run several reports on all the Organizations I need to automatize this kind of reports so we can charge the client accordingly.
Ex:
if (((OptionSetValue)et["caltype"]).Value == 0) // 0 = "Professional"
{
LicenseTypeProfessional++;
CalType = "Professional";
}
CALTYPES CODES:
| 0 | Professional |
| 1 | Administrative |
| 2 | Basic |
| 3 | Device Professional |
| 4 | Device Basic |
| 5 | Essential |
| 6 | Device Essencial |
| 7 | Enterprise |
| 8 | Device Enterprise |


Comments
Post a Comment