function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
MaximeMaxime 

Managed package - List of org where the package is installed

Hello,

Do you know if there is a page with a listing of all the organization where my package is installed ?

Thanks
SwethaSwetha (Salesforce Developers) 
Hi Maxime,
There is a SUBSCRIBERS tab in the Licence Management application and you can use it to see all the installations of your managed package with the exact version installed.

Incase you are looking for programmatic way, see https://salesforce.stackexchange.com/questions/114024/lma-get-a-list-of-all-subscribers-with-version-installed

If this information helps, please mark the answer as best. Thank you
SwethaSwetha (Salesforce Developers) 
Also, see https://developer.salesforce.com/docs/atlas.en-us.220.0.object_reference.meta/object_reference/sforce_api_objects_packagesubscriber.htm that has information on SOQL you can perform

Get all package subscriber orgs with a specific package ID
SELECT Id, OrgKey, OrgStatus, OrgName, OrgType FROM PackageSubscriber WHERE MetadataPackageVersionId = '04t...'
Get all package subscriber orgs that have an installed package created by the org you’re logged in to
​​​​​​​SELECT Id, OrgKey, OrgStatus, OrgName, OrgType FROM PackageSubscriber WHERE InstalledStatus = 'i'
Thanks
MaximeMaxime
Thank you Sweta,

where can i access the Licence Management application ?
SwethaSwetha (Salesforce Developers) 
Please follow the steps listed in https://developer.salesforce.com/docs/atlas.en-us.packagingGuide.meta/packagingGuide/lma_install_app.htm

Hope this helps.Thanks