SlideShare a Scribd company logo
Advanced Developer Workshop
Joshua Birk
Developer Evangelist
@joshbirk
joshua.birk@salesforce.com
Sanjay Savani
Solutions Engineer
@efxfan
ssavani@salesforce.com
Safe Harbor
Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking
statements that involve risks, uncertainties, and assumptions. If any such uncertainties materialize or if any of the assumptions proves
incorrect, the results of salesforce.com, inc. could differ materially from the results expressed or implied by the forward-looking
statements we make. All statements other than statements of historical fact could be deemed forward-looking, including any projections
of subscriber growth, earnings, revenues, or other financial items and any statements regarding strategies or plans of management for
future operations, statements of belief, any statements concerning new, planned, or upgraded services or technology developments and
customer contracts or use of our services.
The risks and uncertainties referred to above include – but are not limited to – risks associated with developing and delivering new
functionality for our service, our new business model, our past operating losses, possible fluctuations in our operating results and rate of
growth, interruptions or delays in our Web hosting, breach of our security measures, risks associated with possible mergers and
acquisitions, the immature market in which we operate, our relatively limited operating history, our ability to expand, retain, and motivate
our employees and manage our growth, new releases of our service and successful customer deployment, our limited history reselling
non-salesforce.com products, and utilization and selling to larger enterprise customers. Further information on potential factors that could
affect the financial results of salesforce.com, inc. is included in our annual report on Form 10-K for the most recent fiscal quarter ended
July 31, 2011. This document and others are available on the SEC Filings section of the Investor Information section of our Web site.
Any unreleased services or features referenced in this or other press releases or public statements are not currently available and may
not be delivered on time or at all. Customers who purchase our services should make the purchase decisions based upon features that
are currently available. Salesforce.com, inc. assumes no obligation and does not intend to update these forward-looking statements.
Interactive
Questions? Current projects? Feedback?
1,000,000
Salesforce Platform Developers
9 Billion
API calls last month
2.5x
Increased demand for Force.com developers
YOU
are the makers
BETA TESTING
Warning: We’re trying something new
Editor Of Choice
For the Eclipse fans in the room
Warehouse Data Model
Merchandise
Name Price Inventory
Pinot $20 15
Cabernet $30 10
Malbec $20 20
Zinfandel $10 50
Invoice
Number Status Count Total
INV-01 Shipped 16 $370
INV-02 New 20 $200
Invoice Line Items
Invoice Line Merchandise Units
Sold
Unit Price Value
INV-01 1 Pinot 1 15 $20
INV-01 2 Cabernet 5 10 $150
INV-01 3 Malbec 10 20 $200
INV-02 1 Pinot 20 50 $200
http://developer.force.com/join
Apex Unit Testing
Platform level support for unit testing
Unit Testing
 Assert all use cases
 Maximize code coverage
 Test early, test often
o Logic without assertions
o 75% is the target
o Test right before deployment
Test Driven Development
Testing Context
// this is where the context of your test begins
Test.StartTest();
//execute future calls, batch apex, scheduled apex
// this is where the context ends
Text.StopTest();
System.assertEquals(a,b); //now begin assertions
Testing Permissions
//Set up user
User u1 = [SELECT Id FROM User
WHERE Alias='auser'];
//Run As U1
System.RunAs(u1){
//do stuff only u1 can do
}
Static Resource Data
List<Invoice__c> invoices =
Test.loadData(Invoice__c.sObjectType, 'InvoiceData');
update invoices;
Mock HTTP
@isTest
global class MockHttp implements HttpCalloutMock {
global HTTPResponse respond(HTTPRequest req) {
// Create a fake response
HttpResponse res = new HttpResponse();
res.setHeader('Content-Type', 'application/json');
res.setBody('{"foo":"bar"}');
res.setStatusCode(200);
return res;
}
}
Mock HTTP
@isTest
private class CalloutClassTest {
static void testCallout() {
Test.setMock(HttpCalloutMock.class, new MockHttp());
HttpResponse res = CalloutClass.getInfoFromExternalService();
// Verify response received contains fake values
String actualValue = res.getBody();
String expectedValue = '{"foo":"bar"}';
System.assertEquals(actualValue, expectedValue);
}
}
Unit Testing Tutorial
http://bit.ly/dfc_adv_workbook
SOQL
Salesforce Object Query Language
Indexed Fields
• Primary Keys
• Id
• Name
• OwnerId
Using a query with two or more indexed filters greatly increases performance
• Audit Dates
• Created Date
• Last Modified Date
• Foreign Keys
• Lookups
• Master-Detail
• CreatedBy
• LastModifiedBy
• External ID fields
• Unique fields
• Fields indexed by
Saleforce
SOQL + Maps
Map<Id,Id> accountFormMap = new Map<Id,Id>();
for (Client_Form__c form : [SELECT ID, Account__c FROM
Client_Form__c
WHERE Account__c
in :accountFormMap.keySet()])
{
accountFormMap.put(form.Account__c, form.Id);
}
Map<ID, Contact> m = new Map<ID, Contact>(
[SELECT Id, LastName FROM Contact]
);
Child Relationships
List<Invoice__c> invoices = [SELECT Name,
(SELECT Merchandise__r.Name
from Line_Items__r)
FROM Invoice__c];
List<Invoice__c> invoices = [SELECT Name,
(SELECT Child_Field__c
from Child_Relationship__r)
FROM Invoice__c];
SOQL Loops
public void massUpdate() {
for (List<Contact> contacts: [SELECT FirstName, LastName
FROM Contact])
{
for(Contact c : contacts) {
if (c.FirstName == 'Barbara' &&
c.LastName == 'Gordon') {
c.LastName = 'Wayne';
}
}
update contacts;
}
}
ReadOnly
<apex:page controller="SummaryStatsController" readOnly="true">
<p>Here is a statistic: {!veryLargeSummaryStat}</p>
</apex:page>
public class SummaryStatsController {
public Integer getVeryLargeSummaryStat() {
Integer closedOpportunityStats =
[SELECT COUNT() FROM Opportunity WHERE
Opportunity.IsClosed = true];
return closedOpportunityStats;
}
}
SOQL Polymorphism
List<EVENT> events = [SELECT Subject,
TYPEOF What
WHEN Account THEN Phone, NumberOfEmployees
WHEN Opportunity THEN Amount, CloseDate
END
FROM Event];
Offset
SELECT Name
FROM Merchandise__c
WHERE Price__c > 5.0
ORDER BY Name
LIMIT 10
OFFSET 0
SELECT Name
FROM Merchandise__c
WHERE Price__c > 5.0
ORDER BY Name
LIMIT 10
OFFSET 10
AggregateResult
List<AggregateResult> res = [
SELECT SUM(Line_Item_Total__c) total,
Merchandise__r.Name name
from Line_Item__c
where Invoice__c = :id
Group By Merchandise__r.Name
];
List<AggregateResult> res = [
SELECT SUM(INTEGER FIELD) total,
Child_Relationship__r.Name name
from Parent__c
where Related_Field__c = :id
Group By Child_Relationship__r.Name
];
Geolocation
String q =
'SELECT ID, Name, ShippingStreet, ShippingCity from Account ';
q+= 'WHERE DISTANCE(Location__c,
GEOLOCATION('+String.valueOf(lat)';
q+= ','+String.valueOf(lng)+'), 'mi')';
q+= ' < 100';
accounts = Database.query(q);
SOSL
List<List<SObject>> allResults =
[FIND 'Tim' IN Name Fields RETURNING
lead(id, name, LastModifiedDate
WHERE LastModifiedDate > :oldestDate),
contact(id, name, LastModifiedDate
WHERE LastModifiedDate > :oldestDate),
account(id, name, LastModifiedDate
WHERE LastModifiedDate > :oldestDate),
user(id, name, LastModifiedDate
WHERE LastModifiedDate > :oldestDate)
LIMIT 5];
Visualforce Controllers
Apex for constructing dynamic pages
Viewstate
Hashed information block to track server side transports
Reducing Viewstate
//Transient data that does not get sent back,
//reduces viewstate
transient String userName {get; set;}
//Static and/or private vars
//also do not become part of the viewstate
static private integer VERSION_NUMBER = 1;
Reducing Viewstate
//Asynchronous JavaScript callback. No viewstate.
//RemoteAction is static, so has no access to Controller context
@RemoteAction
public static Account retrieveAccount(ID accountId) {
try {
Account a = [SELECT ID, Name from ACCOUNT
WHERE Id =:accountID LIMIT 1];
return a;
} catch (DMLException e) {
return null;
}
}
Handling Parameters
//check the existence of the query parameter
if(ApexPages.currentPage().getParameters().containsKey(„id‟)) {
try {
Id aid = ApexPages.currentPage().getParameters().get(„id‟);
Account a =
[SELECT Id, Name, BillingStreet FROM Account
WHERE ID =: aid];
} catch(QueryException ex) {
ApexPages.addMessage(new ApexPages.Message(
ApexPages.Severity.FATAL, ex.getMessage()));
return;
}
}
SOQL Injection
String account_name = ApexPages.currentPage().getParameters().get('name');
account_name = String.escapeSingleQuotes(account_name);
List<Account> accounts = Database.query('SELECT ID FROM
Account WHERE Name = '+account_name);
Cookies
//Cookie =
//new Cookie(String name, String value, String path,
// Integer milliseconds, Boolean isHTTPSOnly)
public PageReference setCookies() {
Cookie companyName =
new Cookie('accountName','TestCo',null,315569260,false);
ApexPages.currentPage().setCookies(new Cookie[]{companyName});
return null;
}
public String getCookieValue() {
return ApexPages.currentPage().
getCookies().get('accountName').getValue();
}
Inheritance and Construction
public with sharing class PageController
implements SiteController {
public PageController() {
}
public PageController(ApexPages.StandardController stc) {
}
Controlling Redirect
//Stay on same page
return null;
//New page, no Viewstate
PageReference newPage = new Page.NewPage();
newPage.setRedirect(true);
return newPage;
//New page, retain Viewstate
PageReference newPage = new Page.NewPage();
newPage.setRedirect(false);
return newPage;
Unit Testing Pages
//Set test page
Test.setCurrentPage(Page.VisualforcePage);
//Set test data
Account a = new Account(Name='TestCo');
insert a;
//Set test params
ApexPages.currentPage().getParameters().put('id',a.Id);
//Instatiate Controller
SomeController controller = new SomeController();
//Make assertion
System.assertEquals(controller.AccountId,a.Id)
Visualforce Components
Embedding content across User Interfaces
Visualforce Dashboards
<apex:page controller="retrieveCase"
tabStyle="Case">
<apex:pageBlock>
{!contactName}s Cases
<apex:pageBlockTable value="{!cases}"
var="c">
<apex:column value="{!c.status}"/>
<apex:column value="{!c.subject}"/>
</apex:pageBlockTable>
</apex:pageBlock>
</apex:page>
Custom Controller
Dashboard Widget
Page Overrides
Select Override
Define Override
Templates
<apex:page controller="compositionExample">
<apex:form >
<apex:insert name=”header" />
<br />
<apex:insert name=“body" />
Layout inserts
Define with
Composition
<apex:composition template="myFormComposition
<apex:define name=”header">
<apex:outputLabel value="Enter your favorite m
<apex:inputText id=”title" value="{!mealField}"
</apex:define>
<h2>Page Content</h2>
<apex:component controller="WarehouseAccounts
<apex:attribute name="lat" type="Decimal" descrip
Query" assignTo="{!lat}"/>
<apex:attribute name="long" type="Decimal" desc
Geolocation Query" assignTo="{!lng}"/>
<apex:pageBlock >
Custom Components
Define Attributes
Assign to Apex
public with sharing class WarehouseAccountsCont
public Decimal lat {get; set;}
public Decimal lng {get; set;}
private List<Account> accounts;
public WarehouseAccountsController() {}
Page Embeds
Standard Controller
Embed in Layout
<apex:page StandardController=”Account”
showHeader=“false”
<apex:canvasApp
developerName=“warehouseDev”
applicationName=“procure”
Canvas
Framework for using third party apps within Salesforce
Any Language, Any Platform
• Only has to be accessible from the user’s browser
• Authentication via OAuth or Signed Response
• JavaScript based SDK can be associated with any language
• Within Canvas, the App can make API calls as the current user
• apex:CanvasApp allows embedding via Visualforce
Canvas Anatomy
Non-HTML Visualforce Tutorial
http://bit.ly/dfc_adv_workbook
Geolocation Component Tutorial
jQuery Integration
Visualforce with cross-browser DOM and event control
jQuery Projects
DOM Manipulation
Event Control
UI Plugins
Mobile Interfaces



noConflict() + ready
<script>
j$ = jQuery.noConflict();
j$(document).ready(function() {
//initialize our interface
});
</script>
 Keeps jQuery out of the $ function
 Resolves conflicts with existing libs
 Ready event = DOM is Ready
jQuery Functions
j$('#accountDiv').html('New HTML');
 Call Main jQuery function
 Define DOM with CSS selectors
 Perform actions via base jQuery methods or plugins
DOM Control
accountDiv = j$(id*=idname);
accountDiv.hide();
accountDiv.hide.removeClass('bDetailBlock');
accountDiv.hide.children().show();
//make this make sense
 Call common functions
 Manipulate CSS Directly
 Interact with siblings and children
 Partial CSS Selectors
Event Control
j$(".pbHeader")
.click(function() {
j$(".pbSubsection”).toggle();
});
 Add specific event handles bound to CSS selectors
 Handle specific DOM element via this
 Manipulate DOM based on current element, siblings or children
jQuery Plugins
 iCanHaz
 jqPlot
 cometD
 SlickGrid, jqGrid
Moustache compatible client side templates
Free charting library
Flexible and powerful grid widgets
Bayeux compatible Streaming API client
Streaming API Tutorial
http://bit.ly/dfc_adv_workbook
LUNCH:
Room 119
To the left, down the stairs
Apex Triggers
Event based programmatic logic
Controlling Flow
trigger LineItemTrigger on Line_Item__c (before insert,
before update) {
//separate before and after
if(Trigger.isBefore) {
//separate events
if(Trigger.isInsert) {
System.debug(„BEFORE INSERT‟);
DelegateClass.performLogic(Trigger.new);
//
Delegates
public class BlacklistFilterDelegate
{
public static Integer FEED_POST = 1;
public static Integer FEED_COMMENT = 2;
public static Integer USER_STATUS = 3;
List<PatternHelper> patterns {set; get;}
Map<Id, PatternHelper> matchedPosts {set; get;}
public BlacklistFilterDelegate()
{
patterns = new List<PatternHelper>();
matchedPosts = new Map<Id, PatternHelper>();
preparePatterns();
}
Static Flags
public with sharing class AccUpdatesControl {
// This class is used to set flag to prevent multiple calls
public static boolean calledOnce = false;
public static boolean ProdUpdateTrigger = false;
}
Chatter Triggers
trigger AddRegexTrigger on Blacklisted_Word__c (before insert, before update) {
for (Blacklisted_Word__c f : trigger.new)
{
if(f.Custom_Expression__c != NULL)
{
f.Word__c = '';
f.Match_Whole_Words_Only__c = false;
f.RegexValue__c = f.Custom_Expression__c;
}
else
f.RegexValue__c =
RegexHelper.toRegex(f.Word__c, f.Match_Whole_Words_Only__c);
}
}
Scheduled Apex
Cron-like functionality to schedule Apex tasks
Schedulable Interface
global with sharing class WarehouseUtil implements Schedulable {
//General constructor
global WarehouseUtil() {}
//Scheduled execute
global void execute(SchedulableContext ctx) {
//Use static method for checking dated invoices
WarehouseUtil.checkForDatedInvoices();
}
Schedulable Interface
System.schedule('testSchedule','0 0 13 * * ?',
new WarehouseUtil());
Via Apex
Via Web UI
Batch Apex
Functionality for Apex to run continuously in the background
Batchable Interface
global with sharing class WarehouseUtil
implements Database.Batchable<sObject> {
//Batch execute interface
global Database.QueryLocator start(Database.BatchableContext BC){
//setup SOQL for scope
}
global void execute(Database.BatchableContext BC,
List<sObject> scope) {
//Execute on current scope
}
global void finish(Database.BatchableContext BC) {
//Finish and clean up context
}
Unit Testing
Test.StartTest();
ID batchprocessid = Database.executeBatch(new WarehouseUtil());
Test.StopTest();
Asynchronous Apex Tutorial
De-duplication Trigger Tutorial
http://bit.ly/dfc_adv_workbook
Apex Endpoints
Exposing Apex methods via SOAP and REST
OAuth
Industry standard method of user authentication
Remote
Application
Salesforce
Platform
Sends App Credentials
User logs in,
Token sent to callback
Confirms token
Send access token
Maintain session with
refresh token
OAuth2 Flow
Apex SOAP
global class MyWebService {
webService static Id makeContact(String lastName, Account a) {
Contact c = new Contact(lastName = 'Weissman',
AccountId = a.Id);
insert c;
return c.id;
}
}
Apex REST
@RestResource(urlMapping='/CaseManagement/v1/*')
global with sharing class CaseMgmtService
{
@HttpPost
global static String attachPic(){
RestRequest req = RestContext.request;
RestResponse res = Restcontext.response;
Id caseId = req.requestURI.substring(req.requestURI.lastIndexOf('/')+1);
Blob picture = req.requestBody;
Attachment a = new Attachment (ParentId = caseId,
Body = picture,
ContentType = 'image/
Apex Email
Classes to handle both incoming and outgoing email
Outgoing Email
Messaging.SingleEmailMessage mail = new Messaging.SingleEmailMessage();
String body = count+' closed records older than 90 days have been deleted';
//Set addresses based on label
mail.setToAddresses(Label.emaillist.split(','));
mail.setSubject ('[Warehouse] Dated Invoices');
mail.setPlainTextBody(body);
//Send the email
Messaging.SendEmailResult [] r =
Messaging.sendEmail(new Messaging.SingleEmailMessage[] {mail});
Incoming Email
global class PageHitsController implements Messaging.InboundEmailHandler {
global Messaging.InboundEmailResult handleInboundEmail(
Messaging.inboundEmail email,
Messaging.InboundEnvelope env)
{
if(email.textAttachments.size() > 0) {
Messaging.InboundEmail.TextAttachment csvDoc =
email.textAttachments[0];
PageHitsController.uploadCSVData(csvDoc.body);
}
Messaging.InboundEmailResult result = new
Messaging.InboundEmailResult();
result.success = true;
return result;
}
Incoming Email
Define Service
Limit Accepts
Custom Endpoint Tutorial
http://bit.ly/dfc_adv_workbook
Team Development
Tools for teams and build masters
Metadata API
API to access customizations to the Force.com platform
Migration Tool
Ant based tool for deploying Force.com applications
Continuous Integration
Source
Control
Sandbox
CI Tool
DE
Fail
Notifications
Development Testing
Tooling API
Access, create and edit Force.com application code
Polyglot Framework
PaaS allowing for the deployment of multiple languages
Heroku Integration Tutorial
http://bit.ly/dfc_adv_workbook
Double-click to enter title
Double-click to enter text
The Wrap Up
check inbox ||
http://bit.ly/elevatela13
Double-click to enter title
Double-click to enter text
@forcedotcom
@joshbirk
@metadaddy
#forcedotcom
Double-click to enter title
Double-click to enter text
Join A
Developer User Group
http://bit.ly/fdc-dugs
LA DUG:
http://www.meetup.com/Los-Angeles-
Force-com-Developer-Group/
Leader: Nathan Pepper
Double-click to enter title
Double-click to enter text
Become A
Developer User Group Leader
Email:
April Nassi
<anassi@salesforce.com>
Double-click to enter title
Double-click to enter text
http://developer.force.com
http://www.slideshare.net/inkless/
elevate-advanced-workshop
simplicity
is the ultimate
form of
sophistication
Da Vinci
Thank You
Joshua Birk
Developer Evangelist
@joshbirk
joshua.birk@salesforce.com
Matthew Reiser
Solution Architect
@Matthew_Reiser
mreiser@salesforce.com

More Related Content

Viewers also liked

Final mda and financials q2 2013
Final mda and financials q2 2013Final mda and financials q2 2013
Final mda and financials q2 2013
primero_mining
 
Tugas makalah ilmu ukur tambang
Tugas makalah ilmu ukur tambangTugas makalah ilmu ukur tambang
Tugas makalah ilmu ukur tambang
Sylvester Saragih
 
Seattle Dev Garage
Seattle Dev GarageSeattle Dev Garage
Seattle Dev Garage
Joshua Birk
 
Lake to Lake 2011 Jay Karen handouts
Lake to Lake 2011 Jay Karen handoutsLake to Lake 2011 Jay Karen handouts
Lake to Lake 2011 Jay Karen handouts
paiiceo
 
Science jeopardy
Science jeopardyScience jeopardy
Science jeopardy
theMrNeale
 
Varam klapenkovs jauns
Varam klapenkovs jaunsVaram klapenkovs jauns
Varam klapenkovs jauns
egilsdo
 
Primero 2011 csr final
Primero 2011 csr   finalPrimero 2011 csr   final
Primero 2011 csr final
primero_mining
 
Water glossary Spain
Water glossary SpainWater glossary Spain
Water glossary Spain
IESCAComenius
 
PROGRESS UPDATE OF LOANED PROJECT POULTRY AND AQUACULTURE HERA AND ERAULO, TI...
PROGRESS UPDATE OF LOANED PROJECT POULTRY AND AQUACULTURE HERA AND ERAULO, TI...PROGRESS UPDATE OF LOANED PROJECT POULTRY AND AQUACULTURE HERA AND ERAULO, TI...
PROGRESS UPDATE OF LOANED PROJECT POULTRY AND AQUACULTURE HERA AND ERAULO, TI...
Asian People's Fund
 

Viewers also liked (19)

Final mda and financials q2 2013
Final mda and financials q2 2013Final mda and financials q2 2013
Final mda and financials q2 2013
 
Doc 1 en fic report_fornasari-vtp__14-jan-13__final doc
Doc 1 en fic report_fornasari-vtp__14-jan-13__final docDoc 1 en fic report_fornasari-vtp__14-jan-13__final doc
Doc 1 en fic report_fornasari-vtp__14-jan-13__final doc
 
7ο δημοτικό σχολείο idaniki poli
7ο δημοτικό σχολείο idaniki poli7ο δημοτικό σχολείο idaniki poli
7ο δημοτικό σχολείο idaniki poli
 
First contact - How to pitch to developers
First contact - How to pitch to developersFirst contact - How to pitch to developers
First contact - How to pitch to developers
 
Tugas makalah ilmu ukur tambang
Tugas makalah ilmu ukur tambangTugas makalah ilmu ukur tambang
Tugas makalah ilmu ukur tambang
 
Seattle Dev Garage
Seattle Dev GarageSeattle Dev Garage
Seattle Dev Garage
 
Lake to Lake 2011 Jay Karen handouts
Lake to Lake 2011 Jay Karen handoutsLake to Lake 2011 Jay Karen handouts
Lake to Lake 2011 Jay Karen handouts
 
Metallurgi 2
Metallurgi 2Metallurgi 2
Metallurgi 2
 
Tugas eksplorasi tambang energi unconventional
Tugas eksplorasi tambang energi unconventional Tugas eksplorasi tambang energi unconventional
Tugas eksplorasi tambang energi unconventional
 
Science jeopardy
Science jeopardyScience jeopardy
Science jeopardy
 
Kristalografi dan mineralogi pertemuan ke 2
Kristalografi dan mineralogi pertemuan ke 2Kristalografi dan mineralogi pertemuan ke 2
Kristalografi dan mineralogi pertemuan ke 2
 
CETPA Winter Training Details
CETPA Winter Training DetailsCETPA Winter Training Details
CETPA Winter Training Details
 
Evaluation
EvaluationEvaluation
Evaluation
 
00141
0014100141
00141
 
Investment
InvestmentInvestment
Investment
 
Varam klapenkovs jauns
Varam klapenkovs jaunsVaram klapenkovs jauns
Varam klapenkovs jauns
 
Primero 2011 csr final
Primero 2011 csr   finalPrimero 2011 csr   final
Primero 2011 csr final
 
Water glossary Spain
Water glossary SpainWater glossary Spain
Water glossary Spain
 
PROGRESS UPDATE OF LOANED PROJECT POULTRY AND AQUACULTURE HERA AND ERAULO, TI...
PROGRESS UPDATE OF LOANED PROJECT POULTRY AND AQUACULTURE HERA AND ERAULO, TI...PROGRESS UPDATE OF LOANED PROJECT POULTRY AND AQUACULTURE HERA AND ERAULO, TI...
PROGRESS UPDATE OF LOANED PROJECT POULTRY AND AQUACULTURE HERA AND ERAULO, TI...
 

Similar to ELEVATE Advanced Workshop

Elevate workshop programmatic_2014
Elevate workshop programmatic_2014Elevate workshop programmatic_2014
Elevate workshop programmatic_2014
David Scruggs
 
Visualforce: Using ActionFunction vs. RemoteAction
Visualforce: Using ActionFunction vs. RemoteActionVisualforce: Using ActionFunction vs. RemoteAction
Visualforce: Using ActionFunction vs. RemoteAction
Salesforce Developers
 
S-Controls for Dummies
S-Controls for DummiesS-Controls for Dummies
S-Controls for Dummies
dreamforce2006
 
S-Controls for Dummies
S-Controls for DummiesS-Controls for Dummies
S-Controls for Dummies
dreamforce2006
 

Similar to ELEVATE Advanced Workshop (20)

ELEVATE Paris
ELEVATE ParisELEVATE Paris
ELEVATE Paris
 
Introduction to Apex for Developers
Introduction to Apex for DevelopersIntroduction to Apex for Developers
Introduction to Apex for Developers
 
Building Efficient Visualforce Pages
Building Efficient Visualforce PagesBuilding Efficient Visualforce Pages
Building Efficient Visualforce Pages
 
Speed of Lightning
Speed of LightningSpeed of Lightning
Speed of Lightning
 
Building Efficient Visualforce Pages
Building Efficient Visualforce PagesBuilding Efficient Visualforce Pages
Building Efficient Visualforce Pages
 
Elevate workshop programmatic_2014
Elevate workshop programmatic_2014Elevate workshop programmatic_2014
Elevate workshop programmatic_2014
 
Lightning Connect Custom Adapters: Connecting Anything with Salesforce
Lightning Connect Custom Adapters: Connecting Anything with SalesforceLightning Connect Custom Adapters: Connecting Anything with Salesforce
Lightning Connect Custom Adapters: Connecting Anything with Salesforce
 
Integrating Force.com with Heroku
Integrating Force.com with HerokuIntegrating Force.com with Heroku
Integrating Force.com with Heroku
 
Lightning Data Service: Eliminate Your Need to Load Records Through Controllers
Lightning Data Service: Eliminate Your Need to Load Records Through ControllersLightning Data Service: Eliminate Your Need to Load Records Through Controllers
Lightning Data Service: Eliminate Your Need to Load Records Through Controllers
 
S1 and Visualforce Publisher Actions
S1 and Visualforce Publisher ActionsS1 and Visualforce Publisher Actions
S1 and Visualforce Publisher Actions
 
Javascript and Remote Objects on Force.com Winter 15
Javascript and Remote Objects on Force.com Winter 15Javascript and Remote Objects on Force.com Winter 15
Javascript and Remote Objects on Force.com Winter 15
 
Developing Offline Mobile Apps with the Salesforce.com Mobile SDK SmartStore,...
Developing Offline Mobile Apps with the Salesforce.com Mobile SDK SmartStore,...Developing Offline Mobile Apps with the Salesforce.com Mobile SDK SmartStore,...
Developing Offline Mobile Apps with the Salesforce.com Mobile SDK SmartStore,...
 
Atl elevate programmatic developer slides
Atl elevate programmatic developer slidesAtl elevate programmatic developer slides
Atl elevate programmatic developer slides
 
Visualforce: Using ActionFunction vs. RemoteAction
Visualforce: Using ActionFunction vs. RemoteActionVisualforce: Using ActionFunction vs. RemoteAction
Visualforce: Using ActionFunction vs. RemoteAction
 
Salesforce1 Platform ELEVATE LA workshop Dec 18, 2013
Salesforce1 Platform ELEVATE LA workshop Dec 18, 2013Salesforce1 Platform ELEVATE LA workshop Dec 18, 2013
Salesforce1 Platform ELEVATE LA workshop Dec 18, 2013
 
Quickly Create Data Sets for the Analytics Cloud
Quickly Create Data Sets for the Analytics CloudQuickly Create Data Sets for the Analytics Cloud
Quickly Create Data Sets for the Analytics Cloud
 
Navi Mumbai Salesforce DUG meetup on integration
Navi Mumbai Salesforce DUG meetup on integrationNavi Mumbai Salesforce DUG meetup on integration
Navi Mumbai Salesforce DUG meetup on integration
 
TrailheaDX 2019 : Truly Asynchronous Apex Triggers using Change Data Capture
TrailheaDX 2019 : Truly Asynchronous Apex Triggers using Change Data CaptureTrailheaDX 2019 : Truly Asynchronous Apex Triggers using Change Data Capture
TrailheaDX 2019 : Truly Asynchronous Apex Triggers using Change Data Capture
 
S-Controls for Dummies
S-Controls for DummiesS-Controls for Dummies
S-Controls for Dummies
 
S-Controls for Dummies
S-Controls for DummiesS-Controls for Dummies
S-Controls for Dummies
 

More from Joshua Birk

More from Joshua Birk (7)

Detroit ELEVATE Track 1
Detroit ELEVATE Track 1Detroit ELEVATE Track 1
Detroit ELEVATE Track 1
 
Workshop slides
Workshop slidesWorkshop slides
Workshop slides
 
Platform integration
Platform integrationPlatform integration
Platform integration
 
Brasil Roadshow
Brasil RoadshowBrasil Roadshow
Brasil Roadshow
 
Sao Paolo Workshop
Sao Paolo WorkshopSao Paolo Workshop
Sao Paolo Workshop
 
Mobile SDK + Cordova
Mobile SDK + CordovaMobile SDK + Cordova
Mobile SDK + Cordova
 
Blue converter
Blue converterBlue converter
Blue converter
 

Recently uploaded

Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
Safe Software
 
Future Visions: Predictions to Guide and Time Tech Innovation, Peter Udo Diehl
Future Visions: Predictions to Guide and Time Tech Innovation, Peter Udo DiehlFuture Visions: Predictions to Guide and Time Tech Innovation, Peter Udo Diehl
Future Visions: Predictions to Guide and Time Tech Innovation, Peter Udo Diehl
Peter Udo Diehl
 
Search and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical FuturesSearch and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical Futures
Bhaskar Mitra
 

Recently uploaded (20)

Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
 
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
 
Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
 
"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor Turskyi"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor Turskyi
 
Future Visions: Predictions to Guide and Time Tech Innovation, Peter Udo Diehl
Future Visions: Predictions to Guide and Time Tech Innovation, Peter Udo DiehlFuture Visions: Predictions to Guide and Time Tech Innovation, Peter Udo Diehl
Future Visions: Predictions to Guide and Time Tech Innovation, Peter Udo Diehl
 
Unpacking Value Delivery - Agile Oxford Meetup - May 2024.pptx
Unpacking Value Delivery - Agile Oxford Meetup - May 2024.pptxUnpacking Value Delivery - Agile Oxford Meetup - May 2024.pptx
Unpacking Value Delivery - Agile Oxford Meetup - May 2024.pptx
 
IoT Analytics Company Presentation May 2024
IoT Analytics Company Presentation May 2024IoT Analytics Company Presentation May 2024
IoT Analytics Company Presentation May 2024
 
Search and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical FuturesSearch and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical Futures
 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
 
Speed Wins: From Kafka to APIs in Minutes
Speed Wins: From Kafka to APIs in MinutesSpeed Wins: From Kafka to APIs in Minutes
Speed Wins: From Kafka to APIs in Minutes
 
UiPath Test Automation using UiPath Test Suite series, part 2
UiPath Test Automation using UiPath Test Suite series, part 2UiPath Test Automation using UiPath Test Suite series, part 2
UiPath Test Automation using UiPath Test Suite series, part 2
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
 
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptxIOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
 

ELEVATE Advanced Workshop

  • 1. Advanced Developer Workshop Joshua Birk Developer Evangelist @joshbirk joshua.birk@salesforce.com Sanjay Savani Solutions Engineer @efxfan ssavani@salesforce.com
  • 2. Safe Harbor Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statements that involve risks, uncertainties, and assumptions. If any such uncertainties materialize or if any of the assumptions proves incorrect, the results of salesforce.com, inc. could differ materially from the results expressed or implied by the forward-looking statements we make. All statements other than statements of historical fact could be deemed forward-looking, including any projections of subscriber growth, earnings, revenues, or other financial items and any statements regarding strategies or plans of management for future operations, statements of belief, any statements concerning new, planned, or upgraded services or technology developments and customer contracts or use of our services. The risks and uncertainties referred to above include – but are not limited to – risks associated with developing and delivering new functionality for our service, our new business model, our past operating losses, possible fluctuations in our operating results and rate of growth, interruptions or delays in our Web hosting, breach of our security measures, risks associated with possible mergers and acquisitions, the immature market in which we operate, our relatively limited operating history, our ability to expand, retain, and motivate our employees and manage our growth, new releases of our service and successful customer deployment, our limited history reselling non-salesforce.com products, and utilization and selling to larger enterprise customers. Further information on potential factors that could affect the financial results of salesforce.com, inc. is included in our annual report on Form 10-K for the most recent fiscal quarter ended July 31, 2011. This document and others are available on the SEC Filings section of the Investor Information section of our Web site. Any unreleased services or features referenced in this or other press releases or public statements are not currently available and may not be delivered on time or at all. Customers who purchase our services should make the purchase decisions based upon features that are currently available. Salesforce.com, inc. assumes no obligation and does not intend to update these forward-looking statements.
  • 5. 9 Billion API calls last month
  • 6. 2.5x Increased demand for Force.com developers
  • 8. BETA TESTING Warning: We’re trying something new
  • 9. Editor Of Choice For the Eclipse fans in the room
  • 10. Warehouse Data Model Merchandise Name Price Inventory Pinot $20 15 Cabernet $30 10 Malbec $20 20 Zinfandel $10 50 Invoice Number Status Count Total INV-01 Shipped 16 $370 INV-02 New 20 $200 Invoice Line Items Invoice Line Merchandise Units Sold Unit Price Value INV-01 1 Pinot 1 15 $20 INV-01 2 Cabernet 5 10 $150 INV-01 3 Malbec 10 20 $200 INV-02 1 Pinot 20 50 $200
  • 12. Apex Unit Testing Platform level support for unit testing
  • 13. Unit Testing  Assert all use cases  Maximize code coverage  Test early, test often o Logic without assertions o 75% is the target o Test right before deployment
  • 15. Testing Context // this is where the context of your test begins Test.StartTest(); //execute future calls, batch apex, scheduled apex // this is where the context ends Text.StopTest(); System.assertEquals(a,b); //now begin assertions
  • 16. Testing Permissions //Set up user User u1 = [SELECT Id FROM User WHERE Alias='auser']; //Run As U1 System.RunAs(u1){ //do stuff only u1 can do }
  • 17. Static Resource Data List<Invoice__c> invoices = Test.loadData(Invoice__c.sObjectType, 'InvoiceData'); update invoices;
  • 18. Mock HTTP @isTest global class MockHttp implements HttpCalloutMock { global HTTPResponse respond(HTTPRequest req) { // Create a fake response HttpResponse res = new HttpResponse(); res.setHeader('Content-Type', 'application/json'); res.setBody('{"foo":"bar"}'); res.setStatusCode(200); return res; } }
  • 19. Mock HTTP @isTest private class CalloutClassTest { static void testCallout() { Test.setMock(HttpCalloutMock.class, new MockHttp()); HttpResponse res = CalloutClass.getInfoFromExternalService(); // Verify response received contains fake values String actualValue = res.getBody(); String expectedValue = '{"foo":"bar"}'; System.assertEquals(actualValue, expectedValue); } }
  • 22. Indexed Fields • Primary Keys • Id • Name • OwnerId Using a query with two or more indexed filters greatly increases performance • Audit Dates • Created Date • Last Modified Date • Foreign Keys • Lookups • Master-Detail • CreatedBy • LastModifiedBy • External ID fields • Unique fields • Fields indexed by Saleforce
  • 23. SOQL + Maps Map<Id,Id> accountFormMap = new Map<Id,Id>(); for (Client_Form__c form : [SELECT ID, Account__c FROM Client_Form__c WHERE Account__c in :accountFormMap.keySet()]) { accountFormMap.put(form.Account__c, form.Id); } Map<ID, Contact> m = new Map<ID, Contact>( [SELECT Id, LastName FROM Contact] );
  • 24. Child Relationships List<Invoice__c> invoices = [SELECT Name, (SELECT Merchandise__r.Name from Line_Items__r) FROM Invoice__c]; List<Invoice__c> invoices = [SELECT Name, (SELECT Child_Field__c from Child_Relationship__r) FROM Invoice__c];
  • 25. SOQL Loops public void massUpdate() { for (List<Contact> contacts: [SELECT FirstName, LastName FROM Contact]) { for(Contact c : contacts) { if (c.FirstName == 'Barbara' && c.LastName == 'Gordon') { c.LastName = 'Wayne'; } } update contacts; } }
  • 26. ReadOnly <apex:page controller="SummaryStatsController" readOnly="true"> <p>Here is a statistic: {!veryLargeSummaryStat}</p> </apex:page> public class SummaryStatsController { public Integer getVeryLargeSummaryStat() { Integer closedOpportunityStats = [SELECT COUNT() FROM Opportunity WHERE Opportunity.IsClosed = true]; return closedOpportunityStats; } }
  • 27. SOQL Polymorphism List<EVENT> events = [SELECT Subject, TYPEOF What WHEN Account THEN Phone, NumberOfEmployees WHEN Opportunity THEN Amount, CloseDate END FROM Event];
  • 28. Offset SELECT Name FROM Merchandise__c WHERE Price__c > 5.0 ORDER BY Name LIMIT 10 OFFSET 0 SELECT Name FROM Merchandise__c WHERE Price__c > 5.0 ORDER BY Name LIMIT 10 OFFSET 10
  • 29. AggregateResult List<AggregateResult> res = [ SELECT SUM(Line_Item_Total__c) total, Merchandise__r.Name name from Line_Item__c where Invoice__c = :id Group By Merchandise__r.Name ]; List<AggregateResult> res = [ SELECT SUM(INTEGER FIELD) total, Child_Relationship__r.Name name from Parent__c where Related_Field__c = :id Group By Child_Relationship__r.Name ];
  • 30. Geolocation String q = 'SELECT ID, Name, ShippingStreet, ShippingCity from Account '; q+= 'WHERE DISTANCE(Location__c, GEOLOCATION('+String.valueOf(lat)'; q+= ','+String.valueOf(lng)+'), 'mi')'; q+= ' < 100'; accounts = Database.query(q);
  • 31. SOSL List<List<SObject>> allResults = [FIND 'Tim' IN Name Fields RETURNING lead(id, name, LastModifiedDate WHERE LastModifiedDate > :oldestDate), contact(id, name, LastModifiedDate WHERE LastModifiedDate > :oldestDate), account(id, name, LastModifiedDate WHERE LastModifiedDate > :oldestDate), user(id, name, LastModifiedDate WHERE LastModifiedDate > :oldestDate) LIMIT 5];
  • 32. Visualforce Controllers Apex for constructing dynamic pages
  • 33. Viewstate Hashed information block to track server side transports
  • 34. Reducing Viewstate //Transient data that does not get sent back, //reduces viewstate transient String userName {get; set;} //Static and/or private vars //also do not become part of the viewstate static private integer VERSION_NUMBER = 1;
  • 35. Reducing Viewstate //Asynchronous JavaScript callback. No viewstate. //RemoteAction is static, so has no access to Controller context @RemoteAction public static Account retrieveAccount(ID accountId) { try { Account a = [SELECT ID, Name from ACCOUNT WHERE Id =:accountID LIMIT 1]; return a; } catch (DMLException e) { return null; } }
  • 36. Handling Parameters //check the existence of the query parameter if(ApexPages.currentPage().getParameters().containsKey(„id‟)) { try { Id aid = ApexPages.currentPage().getParameters().get(„id‟); Account a = [SELECT Id, Name, BillingStreet FROM Account WHERE ID =: aid]; } catch(QueryException ex) { ApexPages.addMessage(new ApexPages.Message( ApexPages.Severity.FATAL, ex.getMessage())); return; } }
  • 37. SOQL Injection String account_name = ApexPages.currentPage().getParameters().get('name'); account_name = String.escapeSingleQuotes(account_name); List<Account> accounts = Database.query('SELECT ID FROM Account WHERE Name = '+account_name);
  • 38. Cookies //Cookie = //new Cookie(String name, String value, String path, // Integer milliseconds, Boolean isHTTPSOnly) public PageReference setCookies() { Cookie companyName = new Cookie('accountName','TestCo',null,315569260,false); ApexPages.currentPage().setCookies(new Cookie[]{companyName}); return null; } public String getCookieValue() { return ApexPages.currentPage(). getCookies().get('accountName').getValue(); }
  • 39. Inheritance and Construction public with sharing class PageController implements SiteController { public PageController() { } public PageController(ApexPages.StandardController stc) { }
  • 40. Controlling Redirect //Stay on same page return null; //New page, no Viewstate PageReference newPage = new Page.NewPage(); newPage.setRedirect(true); return newPage; //New page, retain Viewstate PageReference newPage = new Page.NewPage(); newPage.setRedirect(false); return newPage;
  • 41. Unit Testing Pages //Set test page Test.setCurrentPage(Page.VisualforcePage); //Set test data Account a = new Account(Name='TestCo'); insert a; //Set test params ApexPages.currentPage().getParameters().put('id',a.Id); //Instatiate Controller SomeController controller = new SomeController(); //Make assertion System.assertEquals(controller.AccountId,a.Id)
  • 43. Visualforce Dashboards <apex:page controller="retrieveCase" tabStyle="Case"> <apex:pageBlock> {!contactName}s Cases <apex:pageBlockTable value="{!cases}" var="c"> <apex:column value="{!c.status}"/> <apex:column value="{!c.subject}"/> </apex:pageBlockTable> </apex:pageBlock> </apex:page> Custom Controller Dashboard Widget
  • 45. Templates <apex:page controller="compositionExample"> <apex:form > <apex:insert name=”header" /> <br /> <apex:insert name=“body" /> Layout inserts Define with Composition <apex:composition template="myFormComposition <apex:define name=”header"> <apex:outputLabel value="Enter your favorite m <apex:inputText id=”title" value="{!mealField}" </apex:define> <h2>Page Content</h2>
  • 46. <apex:component controller="WarehouseAccounts <apex:attribute name="lat" type="Decimal" descrip Query" assignTo="{!lat}"/> <apex:attribute name="long" type="Decimal" desc Geolocation Query" assignTo="{!lng}"/> <apex:pageBlock > Custom Components Define Attributes Assign to Apex public with sharing class WarehouseAccountsCont public Decimal lat {get; set;} public Decimal lng {get; set;} private List<Account> accounts; public WarehouseAccountsController() {}
  • 47. Page Embeds Standard Controller Embed in Layout <apex:page StandardController=”Account” showHeader=“false” <apex:canvasApp developerName=“warehouseDev” applicationName=“procure”
  • 48. Canvas Framework for using third party apps within Salesforce
  • 49.
  • 50. Any Language, Any Platform • Only has to be accessible from the user’s browser • Authentication via OAuth or Signed Response • JavaScript based SDK can be associated with any language • Within Canvas, the App can make API calls as the current user • apex:CanvasApp allows embedding via Visualforce Canvas Anatomy
  • 52. jQuery Integration Visualforce with cross-browser DOM and event control
  • 53. jQuery Projects DOM Manipulation Event Control UI Plugins Mobile Interfaces   
  • 54. noConflict() + ready <script> j$ = jQuery.noConflict(); j$(document).ready(function() { //initialize our interface }); </script>  Keeps jQuery out of the $ function  Resolves conflicts with existing libs  Ready event = DOM is Ready
  • 55. jQuery Functions j$('#accountDiv').html('New HTML');  Call Main jQuery function  Define DOM with CSS selectors  Perform actions via base jQuery methods or plugins
  • 56. DOM Control accountDiv = j$(id*=idname); accountDiv.hide(); accountDiv.hide.removeClass('bDetailBlock'); accountDiv.hide.children().show(); //make this make sense  Call common functions  Manipulate CSS Directly  Interact with siblings and children  Partial CSS Selectors
  • 57. Event Control j$(".pbHeader") .click(function() { j$(".pbSubsection”).toggle(); });  Add specific event handles bound to CSS selectors  Handle specific DOM element via this  Manipulate DOM based on current element, siblings or children
  • 58. jQuery Plugins  iCanHaz  jqPlot  cometD  SlickGrid, jqGrid Moustache compatible client side templates Free charting library Flexible and powerful grid widgets Bayeux compatible Streaming API client
  • 60. LUNCH: Room 119 To the left, down the stairs
  • 61. Apex Triggers Event based programmatic logic
  • 62. Controlling Flow trigger LineItemTrigger on Line_Item__c (before insert, before update) { //separate before and after if(Trigger.isBefore) { //separate events if(Trigger.isInsert) { System.debug(„BEFORE INSERT‟); DelegateClass.performLogic(Trigger.new); //
  • 63. Delegates public class BlacklistFilterDelegate { public static Integer FEED_POST = 1; public static Integer FEED_COMMENT = 2; public static Integer USER_STATUS = 3; List<PatternHelper> patterns {set; get;} Map<Id, PatternHelper> matchedPosts {set; get;} public BlacklistFilterDelegate() { patterns = new List<PatternHelper>(); matchedPosts = new Map<Id, PatternHelper>(); preparePatterns(); }
  • 64. Static Flags public with sharing class AccUpdatesControl { // This class is used to set flag to prevent multiple calls public static boolean calledOnce = false; public static boolean ProdUpdateTrigger = false; }
  • 65. Chatter Triggers trigger AddRegexTrigger on Blacklisted_Word__c (before insert, before update) { for (Blacklisted_Word__c f : trigger.new) { if(f.Custom_Expression__c != NULL) { f.Word__c = ''; f.Match_Whole_Words_Only__c = false; f.RegexValue__c = f.Custom_Expression__c; } else f.RegexValue__c = RegexHelper.toRegex(f.Word__c, f.Match_Whole_Words_Only__c); } }
  • 66. Scheduled Apex Cron-like functionality to schedule Apex tasks
  • 67. Schedulable Interface global with sharing class WarehouseUtil implements Schedulable { //General constructor global WarehouseUtil() {} //Scheduled execute global void execute(SchedulableContext ctx) { //Use static method for checking dated invoices WarehouseUtil.checkForDatedInvoices(); }
  • 68. Schedulable Interface System.schedule('testSchedule','0 0 13 * * ?', new WarehouseUtil()); Via Apex Via Web UI
  • 69. Batch Apex Functionality for Apex to run continuously in the background
  • 70. Batchable Interface global with sharing class WarehouseUtil implements Database.Batchable<sObject> { //Batch execute interface global Database.QueryLocator start(Database.BatchableContext BC){ //setup SOQL for scope } global void execute(Database.BatchableContext BC, List<sObject> scope) { //Execute on current scope } global void finish(Database.BatchableContext BC) { //Finish and clean up context }
  • 71. Unit Testing Test.StartTest(); ID batchprocessid = Database.executeBatch(new WarehouseUtil()); Test.StopTest();
  • 72. Asynchronous Apex Tutorial De-duplication Trigger Tutorial http://bit.ly/dfc_adv_workbook
  • 73. Apex Endpoints Exposing Apex methods via SOAP and REST
  • 74. OAuth Industry standard method of user authentication
  • 75. Remote Application Salesforce Platform Sends App Credentials User logs in, Token sent to callback Confirms token Send access token Maintain session with refresh token OAuth2 Flow
  • 76. Apex SOAP global class MyWebService { webService static Id makeContact(String lastName, Account a) { Contact c = new Contact(lastName = 'Weissman', AccountId = a.Id); insert c; return c.id; } }
  • 77. Apex REST @RestResource(urlMapping='/CaseManagement/v1/*') global with sharing class CaseMgmtService { @HttpPost global static String attachPic(){ RestRequest req = RestContext.request; RestResponse res = Restcontext.response; Id caseId = req.requestURI.substring(req.requestURI.lastIndexOf('/')+1); Blob picture = req.requestBody; Attachment a = new Attachment (ParentId = caseId, Body = picture, ContentType = 'image/
  • 78. Apex Email Classes to handle both incoming and outgoing email
  • 79. Outgoing Email Messaging.SingleEmailMessage mail = new Messaging.SingleEmailMessage(); String body = count+' closed records older than 90 days have been deleted'; //Set addresses based on label mail.setToAddresses(Label.emaillist.split(',')); mail.setSubject ('[Warehouse] Dated Invoices'); mail.setPlainTextBody(body); //Send the email Messaging.SendEmailResult [] r = Messaging.sendEmail(new Messaging.SingleEmailMessage[] {mail});
  • 80. Incoming Email global class PageHitsController implements Messaging.InboundEmailHandler { global Messaging.InboundEmailResult handleInboundEmail( Messaging.inboundEmail email, Messaging.InboundEnvelope env) { if(email.textAttachments.size() > 0) { Messaging.InboundEmail.TextAttachment csvDoc = email.textAttachments[0]; PageHitsController.uploadCSVData(csvDoc.body); } Messaging.InboundEmailResult result = new Messaging.InboundEmailResult(); result.success = true; return result; }
  • 83. Team Development Tools for teams and build masters
  • 84. Metadata API API to access customizations to the Force.com platform
  • 85. Migration Tool Ant based tool for deploying Force.com applications
  • 87. Tooling API Access, create and edit Force.com application code
  • 88.
  • 89. Polyglot Framework PaaS allowing for the deployment of multiple languages
  • 90.
  • 92. Double-click to enter title Double-click to enter text The Wrap Up
  • 94. Double-click to enter title Double-click to enter text @forcedotcom @joshbirk @metadaddy #forcedotcom
  • 95. Double-click to enter title Double-click to enter text Join A Developer User Group http://bit.ly/fdc-dugs LA DUG: http://www.meetup.com/Los-Angeles- Force-com-Developer-Group/ Leader: Nathan Pepper
  • 96. Double-click to enter title Double-click to enter text Become A Developer User Group Leader Email: April Nassi <anassi@salesforce.com>
  • 97. Double-click to enter title Double-click to enter text http://developer.force.com http://www.slideshare.net/inkless/ elevate-advanced-workshop
  • 98. simplicity is the ultimate form of sophistication Da Vinci
  • 99. Thank You Joshua Birk Developer Evangelist @joshbirk joshua.birk@salesforce.com Matthew Reiser Solution Architect @Matthew_Reiser mreiser@salesforce.com

Editor's Notes

  1. Check this again – find that transaction / average time stat
  2. Here is an overview of what our data model will look like. Recommended: Break into a demo of building data in the browser, either custom object wizard or schema builder depending on audience/workbooks
  3. We are going to start the day by talking about unit testing, and then in a bit SOQL. Because these are aspects of the platform which are really a dialtone, something we should be constantly evolving with.And yes, that’s a real bug. The first real bug.So if our new fictional job is to enhance this existing Warehouse application, how we write our unit tests are going to be very important.
  4. So let’s talk about what some of your best practices are? Or if you’re brave, some of your worst?OK, let’s actually look at some really bad examples.
  5. So to recap – Unit Tests should prove out not just code, but use cases. You should try to cover as much of your code as possible. And when should you test?
  6. One theor
  7. How does privacy work with Chatter? Can you accidentally share a record I’m not supposed to see?
  8. How does privacy work with Chatter? Can you accidentally share a record I’m not supposed to see?
  9. How does privacy work with Chatter? Can you accidentally share a record I’m not supposed to see?
  10. How does privacy work with Chatter? Can you accidentally share a record I’m not supposed to see?
  11. How does privacy work with Chatter? Can you accidentally share a record I’m not supposed to see?
  12. Indexed fields are fields tracked specifically by the database, and hence can lend to greater performance when your queries use them.
  13. Apex can automatically create Maps from any SOQL result, and you can use that feature to either easily loop through the results or even to easily track the result in the map. For instance, the example here on the bottom would make it possible to find a specific contact in the result with one call from the map.
  14. It’s also good to remember that you can pull children from the parent in one SOQL call. Let’s take a look at that in the Dev Console.SELECT Name, (SELECT Merchandise__r.Name from Line_Items__r) from Invoice__c LIMIT 5
  15. You can also assign the SOQL result directly to a list, and then loop through that array. This allows you to quickly bulkify your code by generating loops and then performing any necessary DML when those loops are done.
  16. One feature added recently to SOQL was the ability to use a readOnly annotation or flag to declare the results unusable in DML, but greatly expanding the number of results that can be handles. For instance, this visualforce page would normally only be able to handle an array of 1,000, but with readOnly that limit is relaxed to 10,000.
  17. Some of the fields in the database are polymorphic, but until a few releases ago – SOQL didn’t really recognize that fact. Now that it does, you can cue specific results from those fields based on their Sobject type. Here’s an example in the Dev Console.SELECT Subject, TYPEOF What WHEN Account THEN Phone, NumberOfEmployees WHEN Opportunity THEN Amount, CloseDate ENDFROM Event
  18. OFFSET allows you to create paginated results easily. The query on the left would give us the first 10 results, and the query on the right would give us the next 10. To see that in the Dev Console:SELECT NAME from Merchandise__c LIMIT 5 OFFSET 0SELECT NAME from Merchandise__c LIMIT 5 OFFSET 10(Or use Contact depending on the org)Now one key limit on OFFSET is that the maximum offset is 2000, so you’ll need to be paginating through a recordset smaller than that.
  19. Aggregate searches allow a developer to do powerful mathematical searches against the database. In the example on the top here, you’ll get a count of merchandise by name for a specific invoice. Think of it like a highly customizable rollup field.The example on the bottom takes that same search, but shows you how it is split up. We’re summarizing an integer field, getting a child name field and then grouping it by that field. Here’s another example, where we can see how much a line item is worth by merchandise:SELECT SUM(Quantity__c) quantity, Merchandise__r.Name name from Line_Item__c Group By Merchandise__r.Name
  20. The platform now supports geolocation. In order to do a dynamic search, like above, you’ll need to construct the string and then use a dynamic query. Using these queries, you could easily gather data based on physical location, for instance if you wanted to find the contact closest to where you parked.Here’s an example in the dev console:SELECT Name FROM Account WHERE DISTANCE(Location__c, GEOLOCATION(37.7945391,-122.3947166), &apos;mi&apos;) &lt; 1
  21. So SOSL isn’t exactly new – we’ve had in the system for some time. But if you are trying to search across different Sobject types, nothing beats it. Here we can find Tim even if he is a contact or account. Let’s look at an example in the Dev Console (in Execute Anonymous):List&lt;List&lt;SObject&gt;&gt; allResults = [FIND &apos;Tim&apos; IN Name Fields RETURNING lead(id, name), contact(id, name, LastModifiedDate), account(id, name, LastModifiedDate), user(id, name, LastModifiedDate) LIMIT 5];System.debug(allResults);
  22. How does privacy work with Chatter? Can you accidentally share a record I’m not supposed to see?
  23. How does privacy work with Chatter? Can you accidentally share a record I’m not supposed to see?
  24. How does privacy work with Chatter? Can you accidentally share a record I’m not supposed to see?
  25. Explain the ID trick, - for SOQL injection protection
  26. Explain the ID trick, - for SOQL injection protection
  27. How does privacy work with Chatter? Can you accidentally share a record I’m not supposed to see?
  28. How does privacy work with Chatter? Can you accidentally share a record I’m not supposed to see?
  29. How does privacy work with Chatter? Can you accidentally share a record I’m not supposed to see?
  30. Controller testing should also include page reference asserts if you are moving from page to page
  31. We’re used to thinking about Visualforce as a component based library, and that let’s us create HTML based interfaces very quickly and easily by binding those components to data. But what about using those components to mix and match Visualforce across your instance?
  32. For instance, you can use Visualforce to create very custom dashboards, and then put those on your homepage. Here’s an example I’ve got with the Warehouse app, which is showing recently created Invoices:( /home/home.jsp )Now if I click into one of those Invoices, we’re also seeing visualforce.
  33. Because, and this is probably one of the more common use cases for Visualforce, anything with a Standard Controller can be used in place of the standard list, view, edit style pages. On this page, I’m still displaying the page layout via the detail component, but we wanted to be able to leverage a new footer across different detail pages(show WarehouseDetail
  34. And we’re keeping that new detail consistent by using a template. We can define our inserts, and then define our content. This allows us to maintain a lot of different look and feels across different object types, but controlling the parts that will the same in one place.
  35. And of course, as we customize that layout, we can create custom components which can take incoming attributes and then render what we need. For instance, in my footer I am using a visualization jQuery plugin called isotope, which allows us to view the line items in a very different way than the related list. You’ll see more about jQuery later.
  36. And of course, if I want that Visualforce in the middle of my layout, I can use a StandardController to embed that right into it. In fact, in this layout – this section is not being generated here on Salesforce.
  37. It’s actually using Canvas, which allows me to easily put third part applications into Salesforce in a secure manner.
  38. For instance, maybe I have a large internal intranet applications. I don’t want to port all that functionality into Salesforce, but I do want to be able to integrate this one interface.
  39. How does privacy work with Chatter? Can you accidentally share a record I’m not supposed to see?
  40. How does privacy work with Chatter? Can you accidentally share a record I’m not supposed to see?
  41. How does privacy work with Chatter? Can you accidentally share a record I’m not supposed to see?
  42. How does privacy work with Chatter? Can you accidentally share a record I’m not supposed to see?
  43. How does privacy work with Chatter? Can you accidentally share a record I’m not supposed to see?
  44. How does privacy work with Chatter? Can you accidentally share a record I’m not supposed to see?
  45. Apex controllers are probably the most common use case for the language, but triggers merit a second place.
  46. And with all of those potentials triggers in your system, they can easily get out of hand. There are a few best practices people have found to make them more maintainable.First, consider having only one trigger per object. Within the trigger class itself, break out every possible event, before and after, and start putting system.debugs around them. At the very least, this will make it very easy to track down in debug logs where the logic is getting fired.Second, consider handing off the actual logic to delegate classes. Send them the current scope of the trigger and let them sort it out. This will neatly divide the functionality that your trigger is trying to accomplish.
  47. A delegate also gives you more breathing room. Look at all the variables we are using to properly track what this delegate wants to do – if you started stacking all the logic into the trigger itself, this will start to get unruly really fast. Don’t let your triggers become a battleground, they should be more like highways.
  48. Another trick is using static variables in another class to track progress in your trigger. Changes to these flags will be visible for the span of the trigger context. So if, for instance, another process kicks off your trigger logic a second time, and you don’t want it to – you could swap the first flag here to true, and then not execute any logic if that flag is true.
  49. And remember one of the more powerful uses of triggers is in association with Chatter. Let’s take a look at a Force.com labs app, Chatter Blacklist, which illustrates this very well.
  50. How does privacy work with Chatter? Can you accidentally share a record I’m not supposed to see?
  51. How does privacy work with Chatter? Can you accidentally share a record I’m not supposed to see?
  52. How does privacy work with Chatter? Can you accidentally share a record I’m not supposed to see?
  53. How does privacy work with Chatter? Can you accidentally share a record I’m not supposed to see?
  54. How does privacy work with Chatter? Can you accidentally share a record I’m not supposed to see?
  55. How does privacy work with Chatter? Can you accidentally share a record I’m not supposed to see?
  56. How does privacy work with Chatter? Can you accidentally share a record I’m not supposed to see?
  57. How does privacy work with Chatter? Can you accidentally share a record I’m not supposed to see?
  58. How does privacy work with Chatter? Can you accidentally share a record I’m not supposed to see?
  59. How does privacy work with Chatter? Can you accidentally share a record I’m not supposed to see?
  60. Self Service case structure by Email
  61. Update this subtitle
  62. How does privacy work with Chatter? Can you accidentally share a record I’m not supposed to see?
  63. statue