Home > Salesforce Licenses

    Download this article

    Salesforce Licenses

    AvePoint Cloud Backup for Salesforce® counts licenses from Salesforce users with specific license types.

    Subscription expiration notification emails will be sent to service administrators 10 days before the expiration, 1 day before the expiration, and on the exact expiration date. It will remind service administrators that the account is going to expire, and your data will be maintained for 30 days after the expiration time. You can choose to purchase or renew your subscription to preserve your data and contact AvePoint support for a copy of the data.

    If you want to know which license types in your Salesforce environment will be charged, complete the following steps:

    1. Navigate to the Developer Console of Salesforce.

      Developer console in the Salesforce Classic experience

      The Salesforce Classic experience.

      Developer Console in the Salesforce Lightening experience

      The Salesforce Lightning experience.

    2. In the Query Editor tab, execute the following query in the tab:

      Select name from userlicense where id in(SELECT userlicenseid FROM Profile WHERE UserType ='Standard') and name !='Chatter Only'

      The license types that will be charged are displayed in the query result.

      The license type query result

    AvePoint Cloud Backup for Salesforce® counts licenses from active Salesforce standard users. If you want to know the number of users in your Salesforce environment that will be charged, complete the following steps:

    1. Navigate to the Query Editor tab in the Developer Console of Salesforce.

    2. Execute the following query in the tab:

      SELECT id from UserLicense where name = 'Chatter Only'
    3. If your organization has the Chatter Only license, The ID of the Chatter Only license is displayed in the query result. Copy this ID.

      The query result of the Chatter Only license ID

    4. If your organization has the Chatter Only license, execute the following query in the tab. Replace ChatterOnlyId with the ID you copied above. The number of users that will be charged is displayed in the query result.

      SELECT Count(Id) FROM User WHERE IsActive = true and Profile.UserType in ('Standard') and Profile.UserLicenseId != 'ChatterOnlyId'

      The query result of users.

      If your organization does not have the Chatter Only license and there is no query result in step 3 above, execute the following query in the tab. The number of users that will be charged is displayed in the query result.

      SELECT Count(Id) FROM User WHERE IsActive = true and Profile.UserType in ('Standard')

      The query result of users.