You need to sign in to do that
Don't have an account?

How to get List of licensed user details for managed packages in salesforce
Hi,
how to get list of licensed user details for managed packages into vf page
how to get list of licensed user details for managed packages into vf page
I understand that you wish to get User details with license type in VF page. You can query it in VF controller and show it on VF page:
List<User> usersWithSalesforceLicense = [
Select Id, Name, Profile.UserLicense.Name
From User
Where Profile.UserLicense.Name = 'Salesforce'
];
SELECT Id,UserLicenseId FROM Profile where UserLicenseId in (SELECT Id FROM UserLicense where name ='Salesforce')