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
Laxmi Pandey 20Laxmi Pandey 20 

managed package expiration date missing why

managed package expiration date missing why; I am looking for the expiration date of package, Salesforce Communities Management (for Communities with Chatter. I found it a free package, does this mean that it will never expire...I wanted to track if it is active in the organization too.. check the below mentioned article, but it did not help:

https://help.salesforce.com/articleView?id=distribution_package_detail.htm&type=5
Best Answer chosen by Laxmi Pandey 20
Khan AnasKhan Anas (Salesforce Developers) 
Hi Laxmi,

Greetings to you!

You can use the License Management App, you can keep track of how many customers have installed a package and which version of the package they currently use. It displays the expiration date.

https://appexchange.salesforce.com/apex/listingDetail?listingId=a0N300000016ZynEAE

https://resources.docs.salesforce.com/168/latest/en-us/sfdc/pdf/lma.pdf

https://developer.salesforce.com/docs/atlas.en-us.workbook_lma.meta/workbook_lma/lma_intro.htm

Also, you can query all the installed packages in your org:
SELECT CreatedDate,ExpirationDate,Id,Status FROM PackageLicense WHERE NamespacePrefix = 'XXX'

https://developer.salesforce.com/docs/atlas.en-us.api.meta/api/sforce_api_objects_packagelicense.htm

I hope it helps you.

Kindly let me know if it helps you and close your query by marking it as solved so that it can help others in the future. It will help to keep this community clean.

Thanks and Regards,
Khan Anas