September 2012

Salesforce

Salesforce Jobs

Check the following websites for Salesforce open roles and apply which suits your profile/resume. 1. https://appexchange.salesforce.com/jobs 2. https://trailhead.salesforce.com/trailblazer-community/groups/0F9300000001oZTCAY?tab=discussion&sort=LAST_MODIFIED_DATE_DESC 3. https://www.linkedin.com/jobs/salesforce-jobs/ 4. https://sforcejobs.com/ 5. https://www.masonfrank.com/salesforce-jobs?keyword=salesforce&location=&jobType=both 6. https://flows.beamery.com/salesforce/regional-talentcommunity

Salesforce

Birthday Reminder or Automatic Birthday wisher using apex in Saleforce

For Birthday Reminder or Automatic Birthday wisher using apex in Saleforce, use the below codes. I have implemented this using Batch Apex. MemberIterable: global class MemberIterable implements Iterator<Member__c> {    List<Member__c> memList{get; set;}    Integer i {get; set;}    public MemberIterable() {        memList = [SELECT E_Mail_Id__c,Birthday__c FROM Member__c];        i = 0;    } ....