CCT London 2013 Theatre Intro to Apex

13
Introduction to Apex Coding in the Cloud @radnip Francis Pindar Salesforce MVP @pchittum Peter Chittum Developer Evangelist
  • date post

    19-Oct-2014
  • Category

    Technology

  • view

    215
  • download

    0

description

 

Transcript of CCT London 2013 Theatre Intro to Apex

Page 1: CCT London 2013 Theatre Intro to Apex

Introduction to ApexCoding in the Cloud

@radnip

Francis PindarSalesforce MVP

@pchittum

Peter ChittumDeveloper Evangelist

Page 2: CCT London 2013 Theatre Intro to Apex

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: CCT London 2013 Theatre Intro to Apex

Fastest Path from Idea to AppInfrastructure

Services

Network

Storage

Operating System

Database

App Server

Web Server

Data Center

Disaster Recovery

OperationsServices

Authentication

Availability

Monitoring

Patch Management

Upgrades

Backup

NOC

Troubleshooting

Your Innovative

App

ApplicationServices

Security/Sharing

Integration

Customization

Web Services

Multi-Language

Workflow

TouchServices

Native iOS SDK

Native Android

SDK

HTML5

Xcode wizards

PIN code

support

Custom APEX

REST

Geo-location

Mobile APIs

SocialServices

Feeds

Profiles

Status updates

Groups

File sharing

Approvals

Messenger

Presence

PlatformServices

Globalization

APIs

Security

Analytics

Search

Identity

Page 4: CCT London 2013 Theatre Intro to Apex

Programmatic Cloud Logic

Programmatic Business Logic

Complex Transactional Logic

Stored Procedures

Triggers

Page 5: CCT London 2013 Theatre Intro to Apex

Apex Code Is

Native OO language for Force.com

Syntactically similar to Java or C#

Bundled with its own unit testing framework

Page 6: CCT London 2013 Theatre Intro to Apex

Use Apex as a More Flexible Alternative

…then try Apex

First try…

Validation Rule

Workflow Rule

Sharing Rule Rule

Standard Controller

Standard APIs

Email to Case/Lead

Report/Report Type

Page 7: CCT London 2013 Theatre Intro to Apex

Setup Menu Developer Console

Force.com Development Tools

…and many more partner tools

Force.com Plug-in for Eclipse IDE

Page 8: CCT London 2013 Theatre Intro to Apex

Triggers for Custom Business Logic

Like stored procedures in relational databases

Connected to Salesforce objects/entities

Fire on standard database events, and undelete

Contains context variables– Control flow

– Access data

Best practices: – 1 Trigger per object

– Bulk processing

– Helper classes

Page 9: CCT London 2013 Theatre Intro to Apex

Demo Time!

Page 10: CCT London 2013 Theatre Intro to Apex

Unit Tests

Unit test framework cooked into the platform

Plan your tests when you plan your customization

Best practices:– Use test data (static

data, Apex generated data, test factories)

Best practices (contd.):– Positive and negative

outcomes

– Bulk data

– Differing usage patterns (All or none, or not?)

– Exercise governor limits

Page 11: CCT London 2013 Theatre Intro to Apex

Demo Time!

Page 12: CCT London 2013 Theatre Intro to Apex

Check It Out

Project: – http://www.github.com/pchittum/

IntroToApexLondon2013

Package:– http://bit.ly/IntroToApexCCT2013

Page 13: CCT London 2013 Theatre Intro to Apex

Thank you!