Individual Records
<apex:pageBlock title="Leads" >
<apex:pageBlockSection title="Email Dupicates" collapsible="true" >
<apex:outputField value="{! Lead.FirstName}"/>
<apex:outputField value="{! Lead.LastName}"/>
<apex:outputField value="{! Lead.Email}"/>
<apex:outputField value="{! Lead.Company}"/>
</apex:pageBlockSection>
<apex:pageBlockSection title="Lead Details" collapsible="true" >
<apex:detail />
</apex:pageBlockSection>
Display Multiple Records
<apex:page title="Account Details" showHeader="false" sidebar="false" standardController="Account">
<apex:pageBlock title="Accounts">
<apex:detail relatedList="false" />
</apex:pageBlock>
<apex:pageBlock title="Contacts">
<apex:pageBlockTable value="{!Account.contacts}" var="contact">
<apex:column value="{!contact.Name}"/>
<apex:column value="{!contact.Title}"/>
<apex:column value="{!contact.Phone}"/>
</apex:pageBlockTable>
</apex:pageBlock>
</apex:page>
<apex:page sidebar="false" showHeader="false" standardController="Lead" >
<apex:outputText value="{0, date, MMMM d',' yyyy}"><br/><br/>
<apex:param value="{!TODAY()}" />
</apex:outputText>
<h2>
<br/><br/>
Hello!! {! $User.firstName}<br/><br/>
</h2>
<h1 text-align="center">
DATA SCAN SOLUTIONS! <br/><br/>
</h1>
<apex:pageBlock title="Leads" >
<apex:pageBlockSection title="Email Dupicates" collapsible="true" >
FirstName: {! Lead.FirstName} <br/>
LastName: {! Lead.LastName}<br/>
Email: {! Lead.email}<br/>
</apex:pageBlockSection>
<apex:pageBlockSection title="FirstName, LastName & Email Duplicates" collapsible="true" >
Hello World!!
</apex:pageBlockSection>
</apex:pageBlock>
</apex:page>
Highly recommend this SuperBadge, this is more than Real Time Scenario!!
Below is one final dashBoard!
Being Salesforce Admin is just not being able to create Reports and dashboards – It is about how your organization handles Data.
Data comes into Salesforce from Various forms – List Imports, Backend API Integrations and Manual Entry.
This Super badge introduces about how data is imported into salesforce via Data Loader…
I am glad and super excited to have accomplished this dashboard.
I never liked java but all roads lead to java.
I wasted 1-2 Hrs while installing Force.com IDE because of its stupid version.
Nothing is easy with Java.
We need jdk-8u144-windows-i586 & eclipse-java-kepler-SR1-win32 (32 bit)
and about Force.com, I used a olderversion http://media.developerforce.com/force-ide/eclipse42
Finally,
Task # 1: My company wanted to re-assign all Accounts, Opps and leads to Sales Reps based on various custom logic. For example based on states, no of employees.
How I Solved:
SECURITY FEATURES – APPLICATION LEVEL SECURITY
Salesforce primarily has two types of Security Features
1. System Level Security
a. Authentication (Single Sign-On : Federated Authentication):
b. Authorization
c. Social Signon
When to Use What?