• Shruti khodabole
  • NEWBIE
  • 25 Points
  • Member since 2017

  • Chatter
    Feed
  • 1
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 9
    Replies
Hello Friends,
 
My requirement is that, i need to display org metadata components (like objecta,apex classes, vf pages, record types, profiles, permisstion sets ...etc) on my VF page.

here i know i am able to petch objects metadata through Schema , but how to petch remaing metadata componets?Can you please let me know where i am going petch metadata and display my vf page.

public List<SelectOption> getName(){
  List<Schema.SObjectType> gd = Schema.getGlobalDescribe().Values();     
  List<SelectOption> options = new List<SelectOption>();
for(Schema.SObjectType f : gd)
  {
    options.add(new SelectOption(f.getDescribe().getLabel(),f.getDescribe().getLabel()));
 }
 return options;
 }

Any help/guidance would be highly appreciated!!
 
Many Thanks,
Naresh j
I have created Lightning email templates into a custom object and would like to retrieve their Ids to use in an Apex class to setTemplateId.
Where are they stored in Salesforce I can't find them?
Thank you.
training but when I wont to edit Page Layouts I got that message 

Unable to Access Page
The value of the "type" parameter contains a character that is not allowed or the value exceeds the maximum allowed length. Remove the character from the parameter value or reduce the value length and resubmit. If the error still persists, report it to our Customer Support team. Provide the URL of the page you were requesting as well as any other related information. 
Hi  Friends
I have a small doubt that is what is the use of “ id” in visual force pages and how to use ,when to use these “id ” in vf page
Ex:1  <apex:pageBlock id="theBlock">
Ex:2  <apex:pageBlockSection title="Information" id="et">

 
Hi ALL,

Can any body know how can we use chatter in field service lightning.
As title, I used system.assert & system.debug in test class, I only got case run successful in console. Where to check the debug & asssert output ?
I wanna transplant custome objects and standard objects(have custome field) from a sand productive enviroment to another test enviroment. How to achieve it?