Intro to Apex Programmers

33
Introduction to Apex for Programmers March 27, 2014

description

If you are familiar with object-oriented languages like Java or C#, Apex may be the language you already almost know. Apex is the cloud-based programming language used on the Salesforce1 Platform to take your enterprise applications to the next level. In this webinar, get an introduction to how Apex is similar to other languages, how you can start coding in Apex with just a web browser, and an overview of the many functions Apex can perform for your applications and users. Key Takeaways Programmers familiar with object-oriented languages will be able to learn Apex easily Apex can perform a wide range of functions from serving as a controller for Visualforce pages to scheduled tasks in the background.

Transcript of Intro to Apex Programmers

Page 1: Intro to Apex Programmers

Introduction to Apex for Programmers March 27, 2014

Page 2: Intro to Apex Programmers

#forcewebinar

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 product or service availability, 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, new products and services, 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, the outcome of intellectual property and other litigation, 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-Q for the most recent fiscal quarter ended July 31, 2012. This documents and others containing important disclosures 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 presentations, 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.

Page 3: Intro to Apex Programmers

#forcewebinar

Speakers

Joshua

Birk Developer Evangelist @joshbirk

LeeAnne

Templeman Developer Evangelist @leeanndroid

Page 4: Intro to Apex Programmers

#forcewebinar

Follow Developer Force for the Latest News

@forcedotcom / #forcewebinar

Developer Force – Force.com Community

Developer Force

Developer Force Group

+Developer Force – Force.com Community

Page 5: Intro to Apex Programmers

#forcewebinar

Have Questions?

§  We have an expert support team at the ready to answer your questions during the webinar.

§  Ask your questions via the GoToWebinar Questions Pane.

§  The speaker(s) will chose top questions to answer live at the end of the webinar.

§  Please post your questions as we go along!

§  Only post your question once; we’ll get to it as we go down the list.

Page 6: Intro to Apex Programmers

#forcewebinar

Introduction to Apex

§  What is Apex?

§  Developing in your browser

§  Apex Controllers

§  Apex Triggers

§  Other Apex Use Cases

Page 7: Intro to Apex Programmers

#forcewebinar

Declarative Apps

Page 8: Intro to Apex Programmers

#forcewebinar

Declarative and Programmatic

Declarative Programmatic

Visualforce Pages Visualforce Components

Apex Controllers Apex Triggers

Metadata API REST API Bulk API

Workflows Validation Rules

Approval Processes

Objects Fields

Relationships

Page Layouts Record Types

User Interface

Business Logic

Data Model

Page 9: Intro to Apex Programmers

#forcewebinar

Apex

Page 10: Intro to Apex Programmers

#forcewebinar

Introduction to Apex

Chapter 1:

§  Object-Oriented Language

§  Dot Notation Syntax

§  Developed, Compiled and Deployed in the Cloud

§  “First Class” Citizen on the Platform

Page 11: Intro to Apex Programmers

#forcewebinar

Every Object, Every Field: Apex and Visualforce Enabled

Visualforce Pages Visualforce Components

Apex Controllers Apex Triggers

Custom UI

Custom Logic

Page 12: Intro to Apex Programmers

#forcewebinar

Apex Class Structure

Chapter 1:

public with sharing class myControllerExtension implements Util { private final Account acct; public Contact newContact {get; set;} public myControllerExtension(ApexPages.StandardController stdController) { this.acct = (Account)stdController.getRecord(); } public PageReference associateNewContact(Id cid) { newContact = [SELECT Id, Account from Contact WHERE Id =: cid LIMIT 1]; newContact.Account = acct; update newContact; } }

Class and Interface based Scoped Variables Inline SOQL Inline DML

þ þ

þ þ

Page 13: Intro to Apex Programmers

#forcewebinar

Developer Console

•  Browser Based •  Create and Edit Classes •  Create and Edit Triggers •  Run Unit Tests •  Review Debug Logs

Page 14: Intro to Apex Programmers

#forcewebinar

Apex Controllers

•  Logic for User Interfaces

•  Custom Controllers or Extensions

•  Transport via:

•  Viewstate

•  JavaScript

Page 15: Intro to Apex Programmers

#forcewebinar

Interacting with Apex

Annotated Apex methods exposed to JavaScript

Visualforce Forms Visualforce component bound to an Apex Method

JavaScript Remoting

Page 16: Intro to Apex Programmers

#forcewebinar

Apex Triggers

§  Event Based Logic

§  Associated with Object Types

§  Before or After:

§  Insert

§  Update

§  Delete

§  Undelete

Page 17: Intro to Apex Programmers

#forcewebinar

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);

Page 18: Intro to Apex Programmers

#forcewebinar

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);

Page 19: Intro to Apex Programmers

#forcewebinar

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; }

Page 20: Intro to Apex Programmers

#forcewebinar

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; } } }

Page 21: Intro to Apex Programmers

#forcewebinar

Scheduled Apex

Page 22: Intro to Apex Programmers

#forcewebinar

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(); }

Page 23: Intro to Apex Programmers

#forcewebinar

Schedulable Interface System.schedule('testSchedule','0 0 13 * * ?',

new WarehouseUtil());

Via Apex

Via Web UI

Page 24: Intro to Apex Programmers

#forcewebinar

Batch Apex

Page 25: Intro to Apex Programmers

#forcewebinar

Batchable Interface global with sharing class WarehouseUtil

implements Database.Batchable<sObject> { //Batch execute interface global Database.QueryLocator start(Database.BatchableContext BC){ //Start on next context } global void execute(Database.BatchableContext BC,

List<sObject> scope) { //Execute on current scope } global void finish(Database.BatchableContext BC) { //Finish and clean up context } }

Page 26: Intro to Apex Programmers

#forcewebinar

Apex Endpoints

Page 27: Intro to Apex Programmers

#forcewebinar

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/

Page 28: Intro to Apex Programmers

#forcewebinar

Unit Testing

•  Declare Classes/Code as Test •  isTest Annotation •  testmethod keyword

•  Default data scope is test only •  75% coverage required

Page 29: Intro to Apex Programmers

#forcewebinar

Governor Limits

•  System Level Limits

•  Examples include:

•  150 DML calls

•  10 callouts

•  More in the Apex Workbook

•  Chapter 3, Tutorial #13

Page 30: Intro to Apex Programmers

#forcewebinar

Bulkify Logic // For loop to iterate through all the queried Account records ! for(Account a: accountsWithContacts){! // Use the child relationships dot syntax to access the related Contacts! for(Contact c: a.Contacts){!

!contactsToUpdate.add(c);! } ! }! ! //Now outside the FOR Loop, perform a single Update DML statement. ! update contactsToUpdate; !!

http://wiki.developerforce.com/page/Apex_Code_Best_Practices

Page 31: Intro to Apex Programmers

#forcewebinar

Recap

§  What is Apex?

§  Developing in your browser

§  Apex Controllers

§  Apex Triggers

§  Other Apex Use Cases

Page 32: Intro to Apex Programmers

#forcewebinar

Resources

§  Your Developer Edition –  http://developer.force.com/join

§  Force.com Workbook –  http://developer.force.com/workbooks

§  Apex Workbook –  http://developer.force.com/workbooks

Page 33: Intro to Apex Programmers

Q & A

#forcewebinar

Joshua

Birk Developer Evangelist @joshbirk

LeeAnne

Templeman Developer Evangelist @leeanndroid