• Mahendra Kumar 26
  • NEWBIE
  • 0 Points
  • Member since 2017

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

I have an Salesforce Developer Interview in few days. Could anyone please help me as to how can I explain about a project I've worked on. 

I just need to know what all key points I need to speak in an interview. I've tried finding videos as to how to explain a project, but I'm unable to find one. 

Any help would be appreciated. 

Thanks!
 
Hi Guys, I'm a newbie for Salesforce...

I'm trying to insert 200 Account record through Bulkification process...However I get the above message...I'm just practicing the below code...I'm unable to execute...please help....
Here is the code...

public class DMLUtility 
{
  Public Static void InsertBulkAccounts()
  {
      //Insert 200 Account records...Always use bulkification process...
      
      List<Account> lstAccounts = new List<Account>(); 
      
      for(integer counter = 1; counter <=200; counter ++)
      {
          //Create an account record..
Account acc = new Account();
          
          acc.Name = 'Bulk Accounts - '+ counter;
          acc.Rating = 'Hot'; 
          acc.AnnualRevenue = 2000000;
          acc.Industry = 'Finance'; 
          acc.Type = 'Open - Direct';  
          acc.Ownership = 'Public'; 
          acc.Site = '554544'; 
          acc.CustomerPriority__c = 'high';  
          acc.Active__c = 'Yes'; 
          
          //Add the record
          lstAccounts.add(acc); 
          
      }
      //Insert the collection of records....
      if(! lstaccounts.isEmpty())
      {
          insert lstAccounts;  
      }
  }
}

Thanks in advance
Hi All, I'm getting an error message I try the below code in Apex class (Method does not exist or incorrect signature: void ShowMessage() from the type AccountManagement). PS : I'm a new bie in development.    Here is the code 

//Create Object of the class. 

AccountManagement acc = new AccountManagement(); 

//Invoke/Call the procedure. 

acc.ShowMessage(); 

Thanks in advance!!!
Hi Guys, I'm a newbie for Salesforce...

I'm trying to insert 200 Account record through Bulkification process...However I get the above message...I'm just practicing the below code...I'm unable to execute...please help....
Here is the code...

public class DMLUtility 
{
  Public Static void InsertBulkAccounts()
  {
      //Insert 200 Account records...Always use bulkification process...
      
      List<Account> lstAccounts = new List<Account>(); 
      
      for(integer counter = 1; counter <=200; counter ++)
      {
          //Create an account record..
Account acc = new Account();
          
          acc.Name = 'Bulk Accounts - '+ counter;
          acc.Rating = 'Hot'; 
          acc.AnnualRevenue = 2000000;
          acc.Industry = 'Finance'; 
          acc.Type = 'Open - Direct';  
          acc.Ownership = 'Public'; 
          acc.Site = '554544'; 
          acc.CustomerPriority__c = 'high';  
          acc.Active__c = 'Yes'; 
          
          //Add the record
          lstAccounts.add(acc); 
          
      }
      //Insert the collection of records....
      if(! lstaccounts.isEmpty())
      {
          insert lstAccounts;  
      }
  }
}

Thanks in advance