Building Mobile Apps That Deliver Salesforce to Your Employees

44
Build Mobile Apps That Deliver Salesforce To Your Employees Mattt Thompson, Heroku, Mobile Lead @mattt

description

Join us as we demonstrate how to take advantage of the latest, just announced platform features in your mobile apps using Heroku and Force.com together. We will be talking through use cases, as well as walking through the code you need to know for your own development.

Transcript of Building Mobile Apps That Deliver Salesforce to Your Employees

Page 1: Building Mobile Apps That Deliver Salesforce to Your Employees

Build Mobile Apps That Deliver Salesforce To Your EmployeesMattt Thompson, Heroku, Mobile Lead @mattt

Page 2: Building Mobile Apps That Deliver Salesforce to Your Employees

Safe harborSafe 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 any litigation, risks associated with completed and any 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 year and in our quarterly report on Form 10-Q for the most recent fiscal quarter. These 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: Building Mobile Apps That Deliver Salesforce to Your Employees

Mattt ThompsonMobile Lead, Heroku @mattt

Page 4: Building Mobile Apps That Deliver Salesforce to Your Employees

Audience Survey

Page 5: Building Mobile Apps That Deliver Salesforce to Your Employees
Page 6: Building Mobile Apps That Deliver Salesforce to Your Employees
Page 7: Building Mobile Apps That Deliver Salesforce to Your Employees

In This Session

• Review Mobile Basics

• Introduce Heroku1

• Build a Salesforce1 Mobile App

Page 8: Building Mobile Apps That Deliver Salesforce to Your Employees

Mobile

Page 9: Building Mobile Apps That Deliver Salesforce to Your Employees
Page 10: Building Mobile Apps That Deliver Salesforce to Your Employees
Page 11: Building Mobile Apps That Deliver Salesforce to Your Employees

Mobile Apps are Cloud Apps

Page 12: Building Mobile Apps That Deliver Salesforce to Your Employees

a reliable, scalable, secure platform that allows you to

iterate quickly and work efficiently

Page 13: Building Mobile Apps That Deliver Salesforce to Your Employees
Page 14: Building Mobile Apps That Deliver Salesforce to Your Employees
Page 15: Building Mobile Apps That Deliver Salesforce to Your Employees
Page 16: Building Mobile Apps That Deliver Salesforce to Your Employees

The best way to develop, deploy, and scale

cloud applications

Page 17: Building Mobile Apps That Deliver Salesforce to Your Employees

$ heroku create

$ git push heroku master

Page 18: Building Mobile Apps That Deliver Salesforce to Your Employees

$ heroku ps:scale web=8

Page 19: Building Mobile Apps That Deliver Salesforce to Your Employees

Polyglot Platform• Java

• Node.js

• Ruby

• Python

• Go

• php

• C / C++

• .NET / Mono

• Dart

• Perl

• Erlang

• Rust

Page 20: Building Mobile Apps That Deliver Salesforce to Your Employees

100+ AddonsData Stores, Mobile, Search, Logging, Email & SMS,

Analytics, Caching, Monitoring, Media, Utilities, & Payment

Page 21: Building Mobile Apps That Deliver Salesforce to Your Employees

$ heroku addons:add newrelic

Page 22: Building Mobile Apps That Deliver Salesforce to Your Employees
Page 23: Building Mobile Apps That Deliver Salesforce to Your Employees

Heroku1Creating apps for your customers has never been more important. Or simple.

Page 24: Building Mobile Apps That Deliver Salesforce to Your Employees
Page 25: Building Mobile Apps That Deliver Salesforce to Your Employees
Page 26: Building Mobile Apps That Deliver Salesforce to Your Employees
Page 27: Building Mobile Apps That Deliver Salesforce to Your Employees

force CLI

The fastest, most efficient way to interact with Salesforce

Page 28: Building Mobile Apps That Deliver Salesforce to Your Employees

Usage: force <command> [<args>] !

Available commands: login Log in to force.com logout Log out from force.com accounts List force.com accounts active Show or set the active force.com account whoami Show information about the active account sobject Manage custom objects field Manage custom fields record Create, modify, or view records export Export metadata to a local directory import Import metadata from a local directory select Execute a SOQL select apex Execute anonymous Apex code version Display current version update Update to the latest version help Show this help

Page 29: Building Mobile Apps That Deliver Salesforce to Your Employees

• DESCRIBE sobject

• Create sobject

• UPDATE sobject

• UPSERT sobject

• DELETE sobject

• SEARCH with SOSL

• QUERY with SOQL

force.com REST APIs

Page 30: Building Mobile Apps That Deliver Salesforce to Your Employees

force.com API Libraries

force.rb force.jsRuby Node.js

Page 31: Building Mobile Apps That Deliver Salesforce to Your Employees

$ force login

Page 32: Building Mobile Apps That Deliver Salesforce to Your Employees

client = Force.new !

client.find 'Account', '001D000000INjVe' !

client.update 'Account', Id: '0016000000MRatd', Name: 'Whizbang Corp'

Page 33: Building Mobile Apps That Deliver Salesforce to Your Employees

Heroku Connect

Automatically synchronize data between Force.com & PostgreSQL

Page 34: Building Mobile Apps That Deliver Salesforce to Your Employees
Page 35: Building Mobile Apps That Deliver Salesforce to Your Employees

Mobile Considerations

Page 36: Building Mobile Apps That Deliver Salesforce to Your Employees

Mobile Considerations

• Interface with Specialized Backend Service

• Integration with third-party services like Twitter or Facebook

• Salesforce integration with existing mobile product

• Extend Salesforce Platform with Heroku

Page 37: Building Mobile Apps That Deliver Salesforce to Your Employees

Social APIs

Advanced Geospatial

Multimedia Processing

Page 38: Building Mobile Apps That Deliver Salesforce to Your Employees
Page 39: Building Mobile Apps That Deliver Salesforce to Your Employees
Page 40: Building Mobile Apps That Deliver Salesforce to Your Employees

Demo

Page 41: Building Mobile Apps That Deliver Salesforce to Your Employees

In This Session

• Review Mobile Basics

• Introduce Heroku1

• Build a Salesforce1 Mobile App

Page 42: Building Mobile Apps That Deliver Salesforce to Your Employees

• http://force.com

• http://heroku.com/1

• http://github.com/heroku/force

• http://github.com/heroku/force.rb

Further Information

Mattt Thompson Mobile Lead, Heroku [email protected]

Page 43: Building Mobile Apps That Deliver Salesforce to Your Employees

Mattt ThompsonMobile Lead,

@mattt

Page 44: Building Mobile Apps That Deliver Salesforce to Your Employees

Mattt Thompson Mobile Lead, Heroku [email protected]

Build Mobile Apps That Deliver Salesforce To Your Employees