Skip to main content

I want to give user Platform Starter license but user license in dropdown shows only Salesforce Platform. If I assign Salesforce Platform license, how would I know if the user have Salesforce Platform Starter or Salesforce Platform Plus license?

 

#Salesforce Admin #Sales Cloud #User Licenses #Salesforce #Salesforce Developer

3 answers
  1. Jul 10, 4:43 PM

    For anyone asking this question in the future:

     

    Use Salesforce Inspector or Workbench to query:

    SELECT Id, Name, LicenseDefinitionKey FROM UserLicense WHERE Name = 'Salesforce Platform'

       

    It will return the License Definition Key, which you can compare against the list found here: 

    https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_objects_userlicense.htm

     

    AUL: corresponds to the Salesforce Platform user license

    AUL1: corresponds to the Salesforce Platform One user license 

     

    I'm assuming here that Salesforce Platform One is the same as Salesforce Platform Plus. Information about the LicenseDefinitionKey for Salesforce Platform Plus is seemingly nonexistent, so take this with a grain of salt. 

     

    Don't trust google search AI, it will return information relevant to the Lightning Platform - One App license (1 app, 10 custom objects), which is incorrect. That license has a definition key of FDC_ONE.

0/9000