Difference between WhoID and WhatID
WhatIDRefers to object.Example: Account, Opportunity, Custom Objects.WhoId:Refers to people.Example: Lead, Contact.
WhatIDRefers to object.Example: Account, Opportunity, Custom Objects.WhoId:Refers to people.Example: Lead, Contact.
ISBLANKISNULLDetermines if an expression has a value and returnsTRUE if it does not. If it contains a value, this function returns FALSE.Determines if an expression isnull (blank) and returns TRUE ....
Sandbox Developer Edition The salesforce.com Sandbox environment is an exact copy of your salesforce.com instance. Developer Edition was an edition created for development of integrations and apps, specifically for the ....
Editable in the objects and tabs section of the enhanced user profile interface after Summer '11 release are as follows Page layout assignments System Permissions Cheers!!!
To maintain Salesforce Certification credentials, all certified professionals must successfully complete release maintenance exams specific to their credential. Depending on your credentials, you may have anywhere from one to three ....
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
Asserts that the first two arguments are the same. If they are not, a fatal error is returned that causes code execution to halt. Sample Code: Trigger: trigger AccountTrigger on ....
For changing Lookup to Master-Detail relationship, ensure that existing records are properly parented. Before changing Lookup to Master-Detail relationship, all the records should have lookup values. If a field is ....
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; } ....
If Extensions are having same method name, it gets overridden. Overrides are defined by whichever methods are defined in the “leftmost” extension, or, the extension that is first ....