• Pul
  • NEWBIE
  • 0 Points
  • Member since 2011

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 1
    Replies

Hi I tried teh below code to get all fields of all objects.. i'm getting too many field describes error as the field describe is above 100. Please suggest how to resolve this issue?

 

 Map<String, Schema.SObjectType> gd = Schema.getGlobalDescribe();
   Map<String,Schema.SObjectField> theFieldmap;
       for(Schema.SObjectType s:gd.values()){
     Schema.DescribeSObjectResult r = s.getDescribe();
           theFieldmap= r.fields.getMap();
            }

  • July 23, 2013
  • Like
  • 0

can somebody guide me how to import attachment file into SFDC environment through apex data loader? i need step by step procedure..

  • July 20, 2011
  • Like
  • 0

can someone help me to import attachment into the SFDC environment through apex data loader?

  • July 20, 2011
  • Like
  • 0

Hi I tried teh below code to get all fields of all objects.. i'm getting too many field describes error as the field describe is above 100. Please suggest how to resolve this issue?

 

 Map<String, Schema.SObjectType> gd = Schema.getGlobalDescribe();
   Map<String,Schema.SObjectField> theFieldmap;
       for(Schema.SObjectType s:gd.values()){
     Schema.DescribeSObjectResult r = s.getDescribe();
           theFieldmap= r.fields.getMap();
            }

  • July 23, 2013
  • Like
  • 0