How to Embed a Visualforce Page on a Standard Layout
1. Click Setup > Customize > Accounts > Page Layouts.2. Click Edit next to Account Layout.3. Select Visualforce Pages in the left column of the user interface elements palette.4. You’ll ....
1. Click Setup > Customize > Accounts > Page Layouts.2. Click Edit next to Account Layout.3. Select Visualforce Pages in the left column of the user interface elements palette.4. You’ll ....
Insert the following and try to predict what will be displayed if you save the page:{! IF ( CONTAINS('salesforce.com','force.com'), 'Yep', 'Nah') }<br>{! IF ( DAY(TODAY()) > 14, 'After the 14th', ....
Visualforce is a framework that allows developers to build sophisticated, custom user interfaces that can be hosted natively on the Lightning platform. The Visualforce framework includes a tag-based markup language, ....
1. Click Setup > Customize > Accounts > Buttons and Links. 2. Click Edit next to the View item in the Standard Buttons and Links list. 3. For Override With, ....
Sample Trigger: trigger ageInterest on Member__c (after insert, after update) { for(Member__c mem:trigger.New) { if(mem.Age__c == 18) { Interest__c it = new Interest__c(Name = 'Ghost Movies',Member__c = mem.ID); insert it; ....
Sample Code: trigger tgrCounter on Mileage__c (after insert, after update) { List <Mileage__C> MilToupdate = new List<Mileage__C>(); for(Mileage__cMlg : Trigger.new) { Mlg.Counter__c = Mlg.Counter__c + 1; ....
Sample Code: public class insst1{ public void sav() { for(integer i=0;i<250;i++) { Lead c=new lead(); c.FirstName='Mr'+i; c.company='XYZ'; ....
An interaction log lets Service Cloud console users write notes on records that appear on primary tabs. You can create multiple interaction logs and customize them to display specific task ....
What is Apex? What is VisualForce? What is an S-Control? What is the difference between Visualforce and S-Control? What is mini page layout? What are wrapper classes? When do we ....
Define Profile and role? What are all the types of relationships in soql? What are the types for run Batch class? Explain Dynamic Apex like Apex Describe information? Explain Remote ....