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
Swetha A 5Swetha A 5 

Display list of apps on a visualforce page.

I have a requirement. I want to show list of apps in my salesforce instance on a visualforce page and an input text field as "Change App label". when I select an app from the list and give a name as input in the text field, the app name should  be changed. Is it possible? if so, please provide the code. It's urgent. Thanks in advance. 
Akhil AnilAkhil Anil

The below query will fetch you the list of Apps and it's corresponding labels.
 
SELECT Id, Name, Label FROM AppMenuItem

 
ManojjenaManojjena
Hi Swetha,
You can display all app in VF page as the object is Queryable .However you can not update any application name .
SELECT Id,Label FROM AppMenuItem


You can check the object detail attributev below .
User-added image

Let me know if it helps !!
Thnaks
Manoj.
Swetha A 5Swetha A 5
Thank you Manoj.. It is very helpful.. Thanks again.
Swetha A 5Swetha A 5
Another doubt is there.. Can we change the App icon from a vf page?? Thank u..