Mobile Magic: How to Create Outstanding Enterprise Apps with Salesforce

24
Mobile Magic: How to Create Outstanding Enterprise Apps with Salesforce Chia Hwu, CEO, Qubop Inc. @chiah Evan Kirchhoff, COO, Qubop Inc. @theevank

description

The Salesforce platform is an extremely rapid development environment for the mobile back end, supporting not only traditional enterprise apps, but also the rich, consumer-grade experiences that are increasingly demanded by customers. Join us as we discuss our strategies for mobile projects with our clients, and how we approach the Force.com platform as mobile developers. We'll show how to seamlessly combine multiple Salesforce technologies like Sales Cloud, Service Cloud, document handling, and Chatter into a single mobile app. Finally, we'll dive into iOS code examples to demonstrate the quick and easy integration of Salesforce APIs with a beautiful, customized native interface.

Transcript of Mobile Magic: How to Create Outstanding Enterprise Apps with Salesforce

Page 1: Mobile Magic: How to Create Outstanding Enterprise Apps with Salesforce

Mobile Magic: How to Create Outstanding Enterprise Apps with SalesforceChia Hwu, CEO, Qubop Inc.@chiahEvan Kirchhoff, COO, Qubop Inc.@theevank

Page 2: Mobile Magic: How to Create Outstanding Enterprise Apps with Salesforce

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: Mobile Magic: How to Create Outstanding Enterprise Apps with Salesforce

All about Qubop Inc.

San Francisco, California

Creating mobile apps on multiple platforms since 2002

Clients include startups, retail brands, Fortune 500 companies

Apps featured by Apple in the US, Canada and Japan, and by Amazon in the Appstore for Android

Page 4: Mobile Magic: How to Create Outstanding Enterprise Apps with Salesforce

• The Salesforce platform from a mobile developer’s point of view

• How to design mobile apps for the enterprise

• Integrating Salesforce with native mobile apps: Apex & SOQL meet iOS

Overview

Page 5: Mobile Magic: How to Create Outstanding Enterprise Apps with Salesforce

First impression: multiple products, multiple apps

Page 6: Mobile Magic: How to Create Outstanding Enterprise Apps with Salesforce

But it’s really all about APIsSELECT Id,AccountId,Name,StageName,Amount,Probability,CloseDate,OwnerId,Business_Unit__c,Product__c,Quote__c,Account.Name, Owner.Name, Owner.Email, Owner.Id, (SELECT Contact.Name, Contact.Email FROM OpportunityContactRoles), (SELECT Field, CreatedById, NewValue, OldValue, CreatedBy.Name, CreatedDate FROM Histories) FROM Opportunity"#define kLeadRestQuery @"/query/?q=SELECT Id,Name,Email,Phone,Company,Title,Description,CollateralSent__c from Lead

Page 7: Mobile Magic: How to Create Outstanding Enterprise Apps with Salesforce

A mobile app is an API mashup

Page 8: Mobile Magic: How to Create Outstanding Enterprise Apps with Salesforce

Mobile users may move seamlessly between services

Page 9: Mobile Magic: How to Create Outstanding Enterprise Apps with Salesforce

They may not think of Salesforce as separate apps

Page 10: Mobile Magic: How to Create Outstanding Enterprise Apps with Salesforce

• The Salesforce platform from a mobile developer’s point of view

• How to design mobile apps for the enterprise

• Integrating Salesforce with native mobile apps: Apex & SOQL meet iOS

Overview

Page 11: Mobile Magic: How to Create Outstanding Enterprise Apps with Salesforce

Enterprise app deployment by platformSource: Good Technologies

Page 12: Mobile Magic: How to Create Outstanding Enterprise Apps with Salesforce

The world’s smartest dumb terminal

Business logic lives on the server

The client is very “thick” and may contain substantial UI logic

Page 13: Mobile Magic: How to Create Outstanding Enterprise Apps with Salesforce

Don’t design the UI based on the data structure

X

Page 14: Mobile Magic: How to Create Outstanding Enterprise Apps with Salesforce

Design around real workflows and use cases

Discover the user’s mental model

Identify “micromoments” for interaction with the app

Page 15: Mobile Magic: How to Create Outstanding Enterprise Apps with Salesforce

Create wireframes and storyboards for state transitions

Page 16: Mobile Magic: How to Create Outstanding Enterprise Apps with Salesforce

• The Salesforce platform from a mobile developer’s point of view

• How to design mobile apps for the enterprise

• Integrating Salesforce with native mobile apps: Apex & SOQL meet iOS

Overview

Page 17: Mobile Magic: How to Create Outstanding Enterprise Apps with Salesforce

Code demo: Sales Organization Manager for iPad

Page 18: Mobile Magic: How to Create Outstanding Enterprise Apps with Salesforce

(quick walkthrough of live app)

Page 19: Mobile Magic: How to Create Outstanding Enterprise Apps with Salesforce

Dive into code example: Sales Cloud integration

Page 20: Mobile Magic: How to Create Outstanding Enterprise Apps with Salesforce

Dive into code example: Service Cloud integration

Page 21: Mobile Magic: How to Create Outstanding Enterprise Apps with Salesforce

Dive into code example: Chatter integration

Page 22: Mobile Magic: How to Create Outstanding Enterprise Apps with Salesforce

Dive into code example: documents and email

Page 23: Mobile Magic: How to Create Outstanding Enterprise Apps with Salesforce

Chia HwuCEO, Qubop Inc.

@chiah

Evan KirchhoffCOO, Qubop Inc.

@theevank

Page 24: Mobile Magic: How to Create Outstanding Enterprise Apps with Salesforce