Welcome to the Force.com Developer Day

Size: px
Start display at page:

Download "Welcome to the Force.com Developer Day"

Transcription

1 Welcome to the Force.com Developer Day Sign up for a Developer Edition account at: Nicola Lalla nlalla@saleforce.com n_lalla nlalla26

2 Safe Harbor Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statements including but not limited to statements concerning the potential market for our existing service offerings and future offerings. All of our forward looking statements involve risks, uncertainties and assumptions. If any such risks or uncertainties materialize or if any of the assumptions proves incorrect, our results could differ materially from the results expressed or implied by the forward-looking statements we make. The risks and uncertainties referred to above include - but are not limited to - risks associated with possible fluctuations in our operating results and cash flows, rate of growth and anticipated revenue run rate, errors, interruptions or delays in our service or our Web hosting, our new business model, our history of operating losses, the possibility that we will not remain profitable, breach of our security measures, the emerging market in which we operate, our relatively limited operating history, our ability to hire, retain and motivate our employees and manage our growth, competition, our ability to continue to release and gain customer acceptance of new and improved versions of our service, customer and partner acceptance of the AppExchange, successful customer deployment and utilization of our services, unanticipated changes in our effective tax rate, fluctuations in the number of shares outstanding, the price of such shares, foreign currency exchange rates and interest rates. Further information on these and other factors that could affect our financial results is included in the reports on Forms 10-K, 10-Q and 8-K and in other filings we make with the Securities and Exchange Commission from time to time. These documents are available on the SEC Filings section of the Investor Information section of our website at Salesforce.com, inc. assumes no obligation and does not intend to update these forward-looking statements, except as required by law.

3 Two Paths to the Cloud Have Emerged For Building Apps Virtualized servers delivered via the Internet IaaS PaaS Development platform delivered as a set of Internet services

4 Infrastructure as a Service (IaaS) Reduces Costs Traditional On-Premise Development Infrastructure as a Service Your Apps Software Infrastructure (Slow) Software Stack Mobile Server Web Server App Server Hyper V Server Security Server Operating System Software Stack Mobile Server Web Server App Server Hyper V Server Security Server Operating System Hardware Infrastructure (Expensive) Increase server utilization Reduce server costs Ease server administration

5 but Doesn t Fundamentally Speed Up IT Infrastructure as a Service Your Apps Software Infrastructure (Slow) Software Stack Mobile Server Web Server App Server Hyper V Server Security Server Operating System You still manage the software stack You still upgrade and patch You still manually scale, tune and back-up Hardware Infrastructure (Expensive)

6 PaaS Makes App Dev Faster By Removing the Software Stack Traditional On-Premise Development Infrastructure as a Service (IaaS) Platform as a Service (PaaS) Your Apps Mobile Server Mobile Server Mobile Server Software Infrastructure (Slow) Web Server App Server Hyper V Server Security Server Web Server App Server Hyper V Server Security Server Web Server App Server Hyper V Server Security Server Operating System Operating System Operating System Hardware Infrastructure (Expensive) Cost Reduction Strategy IT Acceleration Strategy

7 The Result: You Can Deliver More Projects in Less Time IaaS Setup VMs Install Software Configure Stack Build Database Build App Tune Database Deploy App Scale Stack Scale database Backup / DR Months/ Years to Build PaaS Build App Days/Weeks to Build PaaS provides a faster time-to-value for developing, deploying and integrating custom applications, resulting in a more than 50% improvement in productivity for total platform spend per dollar time

8 Why is Force.com Faster? Less Code to Write Automatic database Automatic deployment Performance tuning Back-ups API generation Global Search Scalability Redundancy Network optimization World class security Configurable components

9 Force.com is Open Open Database Open Integration Open Mobile Deployment Open Development Available in future release Open API SOAP API ipad/iphone Multiple Languages Any Platform REST APIs Blackberry Open Eclipse IDE Any Data 200M calls per day Android 3rd Party Ecosystem

10 The Cloud Computing Model Multi-tenant Automatic Upgrades Pay-as-you-go Real-time 5 Times Faster Half the Cost IDC White Paper sponsored by Salesforce.com: Force.com Cloud Platform Drives Huge Time to Market and Cost Savings, Doc # , September, 2009

11 How Do You Build an App?

12 Force.com: Open Platform for Building Enterprise Apps Form Builder Content Delivery Network Java Runtime Ruby Report Builder Point & Click Editor Spring Framework Instant Scalability Visual Workflow Integrated CMS IDE Instant Deployment Website Components JPA Open Architecture

13 Unlimited Real-Time Customization Unlimited Real-time Customization Easy, Real-Time Customization for Managing All Your Data Unlimited Custom Objects & Fields Build any Table Add any Field Automatic Audit History Tracking Automatic Performance Tuning Automatic User Interface 18,800,000+ Customer Customizations 680,000+ Custom Objects (Tables)

14 Granular Real-Time Security Model Real-time Security Model Flexible Data Sharing with Point-and-Click Rules Field, Object and Record-Level Control Sharing Across All Apps Custom Rules Across Roles & Profiles Integrated with API, Reporting & Search

15 Real-Time Query Optimizer Real-time Query Optimizer Fast Data Access with Massive Scale Web clients Query Optimization Engine API calls Massive Scalability Across Multiple Dimensions: <300 ms Your Company Your Role Your Metadata Your Security Your Sharing Rules Your Search

16 Programmable User Interface Programmable User Interface Maximize User Productivity with the Right UI Create Any User Interface Use Code to Create Any Page Use Clicks to Create New Forms Componentized Interface Create Interfaces for Mobile Devices 312,000+ Custom User Interfaces

17 Visualforce

18 What is Visualforce? A way to create custom graphical interfaces with Images, JavaScript, Style Sheets, Flash, Silverlight ASP / JSP like tag-based mark-up Uses model / controller Runs natively on salesforce servers Reusable component model

19

20 Programmable Cloud Logic Programmable Cloud Logic Fast Application Development without the Cost of Infrastructure Programmatic Business Logic Complex Transactional Logic Stored Procedures Triggers Data Validation 81,000,000+ Lines of Apex Code Salesforce has done a beautiful job of integrating data access right into the language, which is something I ve longed for more than once in my programming career.

21 Apex

22 Apex Code Is Java or C#-like syntax for creating logic and manipulating data Runs natively in the cloud; more powerful and faster than client side code (i.e. AJAX) Compiled and strongly typed Transactional Upgrade Protected

23 What can you do with Apex Code? Implement Triggers Code runs when data changes to ensure business logic is applied Create new Web Services Special purpose, custom output format, data transactions Consume other Web Services Data mashups, data enhancement, integration Visualforce Controllers and Controller Extensions Batch Jobs Apply logic across millions of rows of data Services Receive s and process contents

24 Apex Syntax and Capabilities Variable Declaration Commit Transaction Control Structure Array Data Operation Integer NUM = 10; SOQL Account[] accs; Query // Clean up old data accs = [SELECT id FROM account WHERE name LIKE 'test%']; delete accs; commit; accs = new Account[NUM]; for (Integer i = 0; i < NUM; i++) { accs[i] = new Account(name='test ' + i, outstandingshares c=i); } insert accs; Contact[] cons = new Contact[0]; for (Account acc : accs) { cons.add(new Contact(lastName=acc.name + '1', accounted=acc.id)); cons.add(new Contact(lastName=acc.name + '2', accounted=acc.id)); } insert cons;

25 IDE Single Project View Metadata Editors Rich code editors for Visualforce and Apex code

26 Integra;on

27 Proven, Real-Time Integration Leverage Your Existing Investments Connect the Clouds 300M+ API calls/day >50% of Transactions through API Native Oracle & SAP Connectors Consume External Web Services Build New Web Services Leverage Existing Investments 60+ Certified Integration Middleware Connectors Force.com for Facebook Force.com for Google Force.com for Amazon Web Services Integrations Automatically Upgrade w/ Zero Effort

28 Define Layers: What Layers Need Integration? User Interface Screens exposed to end users Application Logic Your business logic (in C, Java, Apex + workflows, rules, etc) Data Layer Your Data Model Security

29 Real-Time Web Sites Real-time Web Sites Lower Costs & Increase Speed of Development Deploy Your Apps Instantly to the Web Connect Your Apps with Your Website Collect CRM Data from the Web 17,500+ Total Sites

30 Make Every App Mobile Real-time Mobile Deployement The Tools To Build Mobile Apps Mobilize any custom object & field Point-and-click administration Remote device management Secure data encryption and storage SDK s that integrate with Force.com API ipad iphone

31 Make Every App Social Collaboration Services Profiles Feeds Status Updates Groups Document Sharing Social networking will become a required component of enterprise applications

32 1,000+ Applications & Services 800+ Integrated Applications Your Choice of 800+ Partner Applications & Services Trusted Native Apps Reviewed by Salesforce.com View, Try, Install Best-in-class CRM & Non-CRM Apps Services Offered System Integrators & Consultants Application Developers Training 1,000+ Apps 200+ Native Apps 150+ Services

33 Thank You

Welcome to the Real-Time Cloud

Welcome to the Real-Time Cloud Welcome to the Real-Time Cloud Daniel Burton Sr. Vice President, Global Public Policy salesforce.com dburton@salesforce.com Safe Harbor Safe harbor statement under the Private Securities Litigation Reform

More information

The Fastest Path to the Cloud Building Your SaaS Company on Force.com

The Fastest Path to the Cloud Building Your SaaS Company on Force.com The Fastest Path to the Cloud Building Your SaaS Company on Force.com Kai Mäkelä salesforce.com kmakela@salesforce.com Safe Harbor Safe harbor statement under the Private Securities Litigation Reform Act

More information

Force.com: Secure Cloud Development. Varun Badhwar Force.com Security Manager

Force.com: Secure Cloud Development. Varun Badhwar Force.com Security Manager Force.com: Secure Cloud Development Varun Badhwar Force.com Security Manager Safe Harbor Statement Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may

More information

Cloud to Cloud Integrations with Force.com. Sandeep Bhanot Developer Evangelist @cloudysan

Cloud to Cloud Integrations with Force.com. Sandeep Bhanot Developer Evangelist @cloudysan Cloud to Cloud Integrations with Force.com Sandeep Bhanot Developer Evangelist @cloudysan Safe Harbor Salesforce.com Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This

More information

Developers: Build Next Generation Apps. Michael Yeganeh Solution Engineering Lead myeganeh@salesforce.com

Developers: Build Next Generation Apps. Michael Yeganeh Solution Engineering Lead myeganeh@salesforce.com Developers: Build Next Generation Apps Michael Yeganeh Solution Engineering Lead myeganeh@salesforce.com Safe harbor Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This

More information

PLATFORM AS A SERVICE MULTI TENANCY AND OPEN STANDARDS. Peter Chittum @pchittum salesforce.com!

PLATFORM AS A SERVICE MULTI TENANCY AND OPEN STANDARDS. Peter Chittum @pchittum salesforce.com! PLATFORM AS A SERVICE MULTI TENANCY AND OPEN STANDARDS Peter Chittum @pchittum salesforce.com! Platform as a Service Multi Tenancy and Open Standards Peter Chittum Developer Evangelist @pchittum Safe Harbor

More information

Healthy Harbor Project - Work From Home

Healthy Harbor Project - Work From Home Enterprise Roles for Cloud Computing Applications, Platforms and Extrastructures Peter Coffee Director, Platform Research salesforce.com Platform as a Service CIO Mandates Productive Reliable Secure Affordable

More information

VerticalResponse for AppExchange: Past, Present and Future

VerticalResponse for AppExchange: Past, Present and Future VerticalResponse for AppExchange: Past, Present and Future Presented By: Joshua Feinberg: VP, Product Management Alex Scalisi: Sales Executive Special Guest Speaker: Judy Loehr: Senior Sales & Marketing

More information

5 Reasons CIOs are Adopting Cloud Computing in 2009 Application Development that s 5 Times Faster at 1/2 the Cost

5 Reasons CIOs are Adopting Cloud Computing in 2009 Application Development that s 5 Times Faster at 1/2 the Cost 5 Reasons CIOs are Adopting Cloud Computing in 2009 Application Development that s 5 Times Faster at 1/2 the Cost Contents Introduction... 2 Why Choose Cloud Computing?... 2 1. Delivers Faster Time to

More information

5 Reasons CIOs are Adopting Cloud Computing in 2010 Application Development that s 5 Times Faster at 1/2 the Cost

5 Reasons CIOs are Adopting Cloud Computing in 2010 Application Development that s 5 Times Faster at 1/2 the Cost 5 Reasons CIOs are Adopting Cloud Computing in 2010 Application Development that s 5 Times Faster at 1/2 the Cost WHITE PAPER Contents Introduction... 2 Why choose cloud computing?... 2 1. Delivers faster

More information

Cisco Enterprise Mobility Services Platform

Cisco Enterprise Mobility Services Platform Data Sheet Cisco Enterprise Mobility Services Platform Reduce development time and simplify deployment of context-aware mobile experiences. Product Overview The Cisco Enterprise Mobility Services Platform

More information

Creating Service Relevance for M2M Data

Creating Service Relevance for M2M Data Creating Service Relevance for M2M Data Jon Upton October 2014 M2M Summit jupton@salesforce.com Safe Harbor Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation

More information

Oracle Cloud: Line of Business PaaS Services. Balaji Yelamanchili Senior Vice President Product Development

Oracle Cloud: Line of Business PaaS Services. Balaji Yelamanchili Senior Vice President Product Development Oracle Cloud: Line of Business PaaS Services Balaji Yelamanchili Senior Vice President Product Development Safe Harbor Statement "Safe Harbor" Statement: Statements in this presentation relating to Oracle's

More information

Building the Global Cloud

Building the Global Cloud Building the Global Cloud Beyond IT Migration to the Enterprise Peter Coffee Head of Platform Research salesforce.com inc. Safe Harbor Safe harbor statement under the Private Securities Litigation Reform

More information

Advancement in Salesforce using CPQ (Configure Price Quote) Technological Catalyst

Advancement in Salesforce using CPQ (Configure Price Quote) Technological Catalyst Advancement in Salesforce using CPQ (Configure Price Quote) Technological Catalyst Shiv Kumar Goyal 1, Nupoor Narendra Nimbalkar 2 Deputy Head of the Department, Master of Computer Application, Vivekanand

More information

Apex Code: The World s First On-Demand Programming Language

Apex Code: The World s First On-Demand Programming Language WHIT EP AP ER Apex Code: The World s First On-Demand Programming Language Contents Extending the Power of the Apex Platform... 1 Multi-tenancy and Programming Languages... 1 Apex Code Design and Syntax...

More information

Embracing the Cloud 5 Key Benefits From Salesforce.com. Mark Easley Sr. Director Sales Engineering Service Cloud measley@salesforce.

Embracing the Cloud 5 Key Benefits From Salesforce.com. Mark Easley Sr. Director Sales Engineering Service Cloud measley@salesforce. Embracing the Cloud 5 Key Benefits From Salesforce.com. Mark Easley Sr. Director Sales Engineering Service Cloud measley@salesforce.com Two Market Leaders Come Together Gartner Magic Quadrants Customer

More information

Appendix A: Case Studies

Appendix A: Case Studies Appendix A: Case Studies 1. CiscoServiceOne (CSOne) Project Salesforce Service Cloud Implementation Background Currently the majority of service operations for Cisco are handled through Oracle ebusiness

More information

WHITEPAPER. Force.com: A Comprehensive Look at the World s Premier Cloud-Computing Platform

WHITEPAPER. Force.com: A Comprehensive Look at the World s Premier Cloud-Computing Platform Force.com: A Comprehensive Look at the World s Premier Cloud-Computing Platform Contents Executive Overview: Cloud Computing and Force.com... 4 Cloud Computing...4 Cloud-Computing Platforms...4 Comparing

More information

Salesforce Admin Course Content: Chapter 1 CRM Introduction Introduction to CRM? Why CRM?

Salesforce Admin Course Content: Chapter 1 CRM Introduction Introduction to CRM? Why CRM? Salesforce Admin Course Content: Chapter 1 CRM Introduction Introduction to CRM? Why CRM? Chapter 2 Introduction to Cloud Computing & Salesforce.com Cloud Computing - Overview What is Software-as-a-Service

More information

Social Enterprise Java Apps

Social Enterprise Java Apps Social Enterprise Java Apps Safe Harbor Statement Safe harbor statement under the Private Securities Litigation Reform Act of 1995. This presentation may contain forward-looking statements that involve

More information

SaaS & Cloud Application Development & Delivery

SaaS & Cloud Application Development & Delivery SaaS & Cloud Application Development & Delivery A Whitepaper by Ekartha, Inc. by Gurpreet Singh, Ekartha Inc. Raj Sethi, Ekartha Inc. Ekartha, Inc. 63 Cutter Mill Road Great Neck, N.Y. 11021 Tel.: (516)

More information

Course Details V1.0. Selinis Technologies Pvt Ltd. 2012, All Rights Reserved

Course Details V1.0. Selinis Technologies Pvt Ltd. 2012, All Rights Reserved Salesforce.com CRM Administration & Development Course Details V1.0 Selinis Pvt Ltd. 2012, All Rights Reserved Salesforce.com Administration Course Details V1.0 CRM Overview Introduction to CRM? Why CRM?

More information

POINT-TO-POINT vs. MEAP THE RIGHT APPROACH FOR AN INTEGRATED MOBILITY SOLUTION

POINT-TO-POINT vs. MEAP THE RIGHT APPROACH FOR AN INTEGRATED MOBILITY SOLUTION POINT-TO-POINT vs. MEAP THE RIGHT APPROACH FOR AN INTEGRATED MOBILITY SOLUTION Executive Summary Enterprise mobility has transformed the way businesses engage with customers, partners and staff while exchanging

More information

Safe Harbor. Henning B. Treichl. Senior Sales Engineer salesforce.com

Safe Harbor. Henning B. Treichl. Senior Sales Engineer salesforce.com Henning B. Treichl Senior Sales Engineer salesforce.com Safe Harbor Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statements

More information

Project #1: Supporting Development Needs Across Multiple Salesforce Projects for a US Company

Project #1: Supporting Development Needs Across Multiple Salesforce Projects for a US Company Project #1: Supporting Development Needs Across Multiple Salesforce Projects for a US Company Brief Description Client Project Project type Type of activity Technology Status Salesforce integration company

More information

Oracle Cloud: Oracle s Platform and Infrastructure Services. Amit Zavery Group Vice President Product Development

Oracle Cloud: Oracle s Platform and Infrastructure Services. Amit Zavery Group Vice President Product Development Oracle Cloud: Oracle s Platform and Infrastructure Services Amit Zavery Group Vice President Product Development Safe Harbor Statement "Safe Harbor" Statement: Statements in this presentation relating

More information

Rapid Development of Smart and Self-Adaptive Cloud, Mobile & IoT Applications - Accelerating the Last Mile of Cloud Computing

Rapid Development of Smart and Self-Adaptive Cloud, Mobile & IoT Applications - Accelerating the Last Mile of Cloud Computing Rapid Development of Smart and Self-Adaptive Cloud, Mobile & IoT Applications - Accelerating the Last Mile of Cloud Computing Jesse Shiah CEO and Co-founder Jesse.shiah@agilepoint.com 2013 AgilePoint,

More information

Development Model for the Cloud Paradigm Shift of the Same Old Same Old? Dr. Umit Yalcinalp, Salesforce.com Developer Evangelist

Development Model for the Cloud Paradigm Shift of the Same Old Same Old? Dr. Umit Yalcinalp, Salesforce.com Developer Evangelist Development Model for the Cloud Paradigm Shift of the Same Old Same Old? Dr. Umit Yalcinalp, Salesforce.com Developer Evangelist Computing History Reduce Complexity, Do More Turing Machines Assembly code

More information

glovia OM Cloud - based Enterprise Resource Planning A Presentation for Prospective Clients February 2014

glovia OM Cloud - based Enterprise Resource Planning A Presentation for Prospective Clients February 2014 glovia OM Cloud - based Enterprise Resource Planning A Presentation for Prospective Clients February 2014 Content Introduction to Canon Information and Imaging Solutions and Glovia The unique value to

More information

APP DEVELOPMENT ON THE CLOUD MADE EASY WITH PAAS

APP DEVELOPMENT ON THE CLOUD MADE EASY WITH PAAS APP DEVELOPMENT ON THE CLOUD MADE EASY WITH PAAS This article looks into the benefits of using the Platform as a Service paradigm to develop applications on the cloud. It also compares a few top PaaS providers

More information

Increase HR Productivity with Salesforce.com platforms

Increase HR Productivity with Salesforce.com platforms Increase HR Productivity with Salesforce.com platforms Mark Schoemaker ISV Programs EMEA North @mschoemaker Safe Harbor Safe harbor statement under the Private Securities Litigation Reform Act of 1995:

More information

Pervasive Software + NetSuite = Seamless Cloud Business Processes

Pervasive Software + NetSuite = Seamless Cloud Business Processes Pervasive Software + NetSuite = Seamless Cloud Business Processes Successful integration solution between cloudbased ERP and on-premise applications leveraging Pervasive integration software. Prepared

More information

elivering CRM Success in the Cloud

elivering CRM Success in the Cloud Salesforce.com Services As a Cloud System Integrator Agama Solutions partners with you through the complete lifespam of your cloud journey while amplifying your returns from the cloud and minimizing the

More information

Mobile Application Development Platform Comparison

Mobile Application Development Platform Comparison Mobile Application Development Platform Comparison Unvired Inc. Disclaimer: This document has been prepared based on publicly available data of other platform vendors and is subject to change. Comparison

More information

100% NO CODING NO DEVELOPING IMMEDIATE BUSINESS -25% -70% UNLIMITED SCALABILITY DEVELOPMENT TIME SOFTWARE STABILITY

100% NO CODING NO DEVELOPING IMMEDIATE BUSINESS -25% -70% UNLIMITED SCALABILITY DEVELOPMENT TIME SOFTWARE STABILITY 100% UNLIMITED SCALABILITY TOTAL COST OF OWNERSHIP -25% +50% EFFICENCY INCREASE -70% +65% DEVELOPMENT TIME SOFTWARE STABILITY NO CODING NO DEVELOPING IMMEDIATE BUSINESS FlexyGo Rapid Application Builder

More information

Build Your Mobile Strategy Not Just Your Mobile Apps

Build Your Mobile Strategy Not Just Your Mobile Apps Mobile Cloud Service Build Your Mobile Strategy Not Just Your Mobile Apps Copyright 2015 Oracle Corporation. All Rights Reserved. What is is it? Oracle Mobile Cloud Service provides everything you need

More information

tibbr Now, the Information Finds You.

tibbr Now, the Information Finds You. tibbr Now, the Information Finds You. - tibbr Integration 1 tibbr Integration: Get More from Your Existing Enterprise Systems and Improve Business Process tibbr empowers IT to integrate the enterprise

More information

ORACLE APPLICATION EXPRESS 5.0

ORACLE APPLICATION EXPRESS 5.0 ORACLE APPLICATION EXPRESS 5.0 Key Features Fully supported nocost feature of the Oracle Database Simple 2-Tier Architecture Develop desktop and mobile applications 100% Browserbased Development and Runtime

More information

SAP HANA Cloud Platform. Technical Overview Uwe Heinz

SAP HANA Cloud Platform. Technical Overview Uwe Heinz SAP HANA Cloud Platform Technical Overview Uwe Heinz The way into the Cloud 75% New IT invests 2016 are cloud based Source: IDC 2013 Report: New Enterprise IT Spend 80% New IT invests Driven by users Source:

More information

WEB SERVICES FOR MOBILE COMPUTING

WEB SERVICES FOR MOBILE COMPUTING WEB SERVICES FOR MOBILE COMPUTING Piyush M.Patil, Computer Department,University Of Mumbai, Mumbai,India,Mob-9699398650 Kushal Gohil, Computer Department,University Of Mumbai, Mumbai,India,Mob-9323916806

More information

KICK-START CLOUD VENTURES

KICK-START CLOUD VENTURES Contents SALESFORCE & CRM PRACTICE GROUP 3 MARKETING & CAMPAIGN MESSAGE ORCHESTRATION 4 FORCE.COM & ISV PARTNER INTEGRATED COLLABORATION & CAMPAIGN MANAGEMENT 4 MARKETING & OPERATIONAL MESSAGE ORCHESTRATION

More information

Datamation. 3 Ways to Move Application Development to the Cloud. Executive Brief. In This Paper

Datamation. 3 Ways to Move Application Development to the Cloud. Executive Brief. In This Paper 3 Ways to Move Application Development to the Cloud In This Paper Many companies are looking to cloud-based platforms to speed development PaaS provides a cloud-based platform for developing and deploying

More information

Cloud Computing: IaaS & PaaS

Cloud Computing: IaaS & PaaS Cloud Computing: IaaS & PaaS Thomas Kurian Executive Vice President Product Development 62 Safe Harbor Statement "Safe Harbor" Statement: Statements in this presentation relating to Oracle's future plans,

More information

Oracle Service Cloud Platform Overview & Roadmap CON8910

Oracle Service Cloud Platform Overview & Roadmap CON8910 Presented with Oracle Service Cloud Platform Overview & Roadmap CON8910 Shon Wedde Sr. Director, Product Management Oracle Service Cloud Oct 2, 2014 Safe Harbor Statement The preceding is intended to outline

More information

Middleware- Driven Mobile Applications

Middleware- Driven Mobile Applications Middleware- Driven Mobile Applications A motwin White Paper When Launching New Mobile Services, Middleware Offers the Fastest, Most Flexible Development Path for Sophisticated Apps 1 Executive Summary

More information

TRAINING & CERTIFICATION

TRAINING & CERTIFICATION Course Catalog The following provides a summary of our entire course catalog. This list changes with every new addition. Some titles may be under development. All titles and availability are subject to

More information

Building and Deploying Enterprise M2M Applications with Axeda Platform

Building and Deploying Enterprise M2M Applications with Axeda Platform w h i t e p a p e r Building and Deploying Enterprise M2M Applications with Axeda Platform According to Harbor Research, there are billions of wired and wireless intelligent assets around the globe that

More information

ORACLE MOBILE APPLICATION FRAMEWORK DATA SHEET

ORACLE MOBILE APPLICATION FRAMEWORK DATA SHEET ORACLE MOBILE APPLICATION FRAMEWORK DATA SHEET PRODUCTIVE ENTERPRISE MOBILE APPLICATIONS DEVELOPMENT KEY FEATURES Visual and declarative development Mobile optimized user experience Simplified access to

More information

<Insert Picture Here> Oracle Application Express 4.0

<Insert Picture Here> Oracle Application Express 4.0 Oracle Application Express 4.0 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any

More information

Your Web Team is Busier Than Ever

Your Web Team is Busier Than Ever Jason Garoutte Your Web Team is Busier Than Ever New Websites New Devices More Changes Landing Pages Social Pages Marketing Ideas are Waiting for IT Resources A CMS Only Made More Work for IT Software

More information

The Evolution of PaaS QCon London 2012

The Evolution of PaaS QCon London 2012 The Evolution of PaaS QCon London 2012 Paul Fremantle CTO, WSO2 paul@wso2.com @pzfreo #wso2 #qconlondon Moore s Law for Data The amount of data online went from 5 exabytes in 2002 281 exabytes in 2009

More information

W H IT E P A P E R. Salesforce CRM Security Audit Guide

W H IT E P A P E R. Salesforce CRM Security Audit Guide W HITEPAPER Salesforce CRM Security Audit Guide Contents Introduction...1 Background...1 Security and Compliance Related Settings...1 Password Settings... 2 Audit and Recommendation... 2 Session Settings...

More information

Jitterbit Technical Overview : Salesforce

Jitterbit Technical Overview : Salesforce Jitterbit allows you to easily integrate Salesforce with any cloud, mobile or on premise application. Jitterbit s intuitive Studio delivers the easiest way of designing and running modern integrations

More information

BEST SALESFORCE TRAINING IN CHENNAI WITH 100% PLACEMENT

BEST SALESFORCE TRAINING IN CHENNAI WITH 100% PLACEMENT BEST SALESFORCE TRAINING IN CHENNAI WITH 100% PLACEMENT Best SALESFORCE training is offered by Peridot Systems in Chennai with placement. Our motto is to provide quality training services with the aim

More information

Secure Coding SSL, SOAP and REST. Astha Singhal Product Security Engineer salesforce.com

Secure Coding SSL, SOAP and REST. Astha Singhal Product Security Engineer salesforce.com Secure Coding SSL, SOAP and REST Astha Singhal Product Security Engineer salesforce.com Safe Harbor Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may

More information

Salesforce Certified Force.com Developer Study Guide

Salesforce Certified Force.com Developer Study Guide Salesforce Certified Force.com Developer Study Guide Summer 15 STUDY GUIDE 0 Contents ABOUT THE SALESFORCE CERTIFIED FORCE.COM DEVELOPER PROGRAM... 1 SECTION 1. PURPOSE OF THIS STUDY GUIDE... 1 SECTION

More information

Salesforce.com and the financial services sector

Salesforce.com and the financial services sector Don t be clouded by the cloud: Salesforce.com and the financial services sector Martijn Simons Account Executive Financial Services @Martijn_On_Line In//martijn-simons Lien Ceulemans Corporate legal counsel

More information

Copyright 2013 Splunk Inc. Introducing Splunk 6

Copyright 2013 Splunk Inc. Introducing Splunk 6 Copyright 2013 Splunk Inc. Introducing Splunk 6 Safe Harbor Statement During the course of this presentation, we may make forward looking statements regarding future events or the expected performance

More information

Secrets of the Force.com Platform

Secrets of the Force.com Platform Salesforce Secrets of the Force.com Platform Peter Coffee Director, Platform Research salesforce.com Ed Lenta General Manager VMware Safe Harbor Safe harbor statement under the Private Securities Litigation

More information

Sybase Unwired Platform 2.0

Sybase Unwired Platform 2.0 white paper Sybase Unwired Platform 2.0 Development Paradigm www.sybase.com TABLE OF CONTENTS 1 Sybase Unwired Platform 1 Mobile Application Development 2 Mobile Business Object (MBO) Development 4 Mobile

More information

THE MOBlLE APP. REVOLUTlON. 8 STEPS TO BUlLDING MOBlLE APPS FAST ln THE CLOUD

THE MOBlLE APP. REVOLUTlON. 8 STEPS TO BUlLDING MOBlLE APPS FAST ln THE CLOUD THE MOBlLE APP REVOLUTlON 8 STEPS TO BUlLDING MOBlLE APPS FAST ln THE CLOUD People use hand-held devices for everything from communicating and playing games to shopping and surfing the Internet. In fact,

More information

Top 5 reasons to move Lotus Notes apps to the cloud with Force.com

Top 5 reasons to move Lotus Notes apps to the cloud with Force.com Top 5 reasons to move Lotus Notes apps to the cloud with Force.com WHITE PAPER Contents 5 reasons to move Lotus Notes apps to Force.com... 1 1. Force.com apps provide a better user experience...1 2. Force.com

More information

Clouds on the Horizon: What s the Best Oracle Fusion Strategy for Those Still on Oracle 11i or R12.0?

Clouds on the Horizon: What s the Best Oracle Fusion Strategy for Those Still on Oracle 11i or R12.0? Clouds on the Horizon: What s the Best Oracle Fusion Strategy for Those Still on Oracle 11i or R12.0? Gustavo Gonzalez -Oracle ACE at IT Convergence Abstract The general availability of Oracle Fusion,

More information

BUSINESS SOFTWARE. for Recruitment Professionals

BUSINESS SOFTWARE. for Recruitment Professionals BUSINESS SOFTWARE for Recruitment Professionals TriSys brings everything together TriSys is the central point of access for: social networking sites, job posting and distribution, back office payroll and

More information

Introduction to Oracle Mobile Application Framework Raghu Srinivasan, Director Development Mobile and Cloud Development Tools Oracle

Introduction to Oracle Mobile Application Framework Raghu Srinivasan, Director Development Mobile and Cloud Development Tools Oracle Introduction to Oracle Mobile Application Framework Raghu Srinivasan, Director Development Mobile and Cloud Development Tools Oracle Safe Harbor Statement The following is intended to outline our general

More information

Where are Organizations Today? The Cloud. The Current and Future State of IT When, Where, and How To Leverage the Cloud. The Cloud and the Players

Where are Organizations Today? The Cloud. The Current and Future State of IT When, Where, and How To Leverage the Cloud. The Cloud and the Players The Current and Future State of IT When, Where, and How To Leverage the The and the Players Software as a Service Citrix VMWare Google SalesForce.com Created and Presented by: Rand Morimoto, Ph.D., MCITP,

More information

Overview. Datasheet: Centerprise Connector for Salesforce. Key Features. Overview

Overview. Datasheet: Centerprise Connector for Salesforce. Key Features. Overview Datasheet: Centerprise Connector for Salesforce Overview Key Features Overview Powerful data mapping capabilities Fast upload of data to Salesforce Change data capture features transfer only the changes

More information

A new way of developing applications in cloud environment using force.com (salesforce.com)

A new way of developing applications in cloud environment using force.com (salesforce.com) A new way of developing applications in cloud environment using force.com (salesforce.com) K.Pullarao #1, K.Thirupathirao #2 LBRCE, School of Computer Science, India ABSTRACT The new way of building and

More information

Combining new technologies: SAP Cloud for Sales and HANA Cloud Integration at Cavalier

Combining new technologies: SAP Cloud for Sales and HANA Cloud Integration at Cavalier Combining new technologies: SAP Cloud for Sales and HANA Cloud Integration at Cavalier Your logo Arnaud Sergent - SAP Joeri Seghers - Expertum SAPience.be TECHday 14 1 Agenda 1- Introduction 2- SAP Cloud

More information

Data Integration Checklist

Data Integration Checklist The need for data integration tools exists in every company, small to large. Whether it is extracting data that exists in spreadsheets, packaged applications, databases, sensor networks or social media

More information

Sybase Unwired Platform 2.1.x

Sybase Unwired Platform 2.1.x white paper Sybase Unwired Platform 2.1.x Development Paradigm www.sybase.com Table of Contents 1 Sybase Unwired Platform 2 Mobile Application Development 3 Mobile Business Object (MBO) Development 5 Mobile

More information

yvette@yvetteagostini.it yvette@yvetteagostini.it

yvette@yvetteagostini.it yvette@yvetteagostini.it 1 The following is merely a collection of notes taken during works, study and just-for-fun activities No copyright infringements intended: all sources are duly listed at the end of the document This work

More information

PLATFORM-AS-A-SERVICE: ADOPTION, STRATEGY, PLANNING AND IMPLEMENTATION

PLATFORM-AS-A-SERVICE: ADOPTION, STRATEGY, PLANNING AND IMPLEMENTATION PLATFORM-AS-A-SERVICE: ADOPTION, STRATEGY, PLANNING AND IMPLEMENTATION White Paper May 2012 Abstract Whether enterprises choose to use private, public or hybrid clouds, the availability of a broad range

More information

Rich Internet Applications

Rich Internet Applications Rich Internet Applications [Image coming] Ryan Stewart Rich Internet Application Evangelist rstewart@adobe.com Ryan Stewart Flex Developer for 3 years Rich Internet Application Blogger for 2 years http://blogs.zdnet.com/stewart/

More information

Six advantages of a cloud-based IT help desk

Six advantages of a cloud-based IT help desk WHITE PAPER Contents Introduction... 1 Six advantages of putting the IT help desk in the cloud... 1 Advantage #1: More proactive IT support...1 Advantage #2: More collaboration...2 Advantage #3: More point-and-click

More information

ORACLE MOBILE SUITE. Complete Mobile Development Solution. Cross Device Solution. Shared Services Infrastructure for Mobility

ORACLE MOBILE SUITE. Complete Mobile Development Solution. Cross Device Solution. Shared Services Infrastructure for Mobility ORACLE MOBILE SUITE COMPLETE MOBILE DEVELOPMENT AND DEPLOYMENT PLATFORM KEY FEATURES Productivity boosting mobile development framework Cross device/os deployment Lightweight and robust enterprise service

More information

Ken Bond Vice President Investor Relations

Ken Bond Vice President Investor Relations 1 Ken Bond Vice President Investor Relations 2 Safe Harbor Statement "Safe Harbor" Statement: Statements in this presentation relating to Oracle's future plans, intentions and prospects are "forward-looking

More information

Cloud Computing: Making the right choices

Cloud Computing: Making the right choices Cloud Computing: Making the right choices Kalpak Shah Clogeny Technologies Pvt Ltd 1 About Me Kalpak Shah Founder & CEO, Clogeny Technologies Passionate about economics and technology evolving through

More information

Cloud Computing. Cloud computing:

Cloud Computing. Cloud computing: Cloud computing: Cloud Computing A model of data processing in which high scalability IT solutions are delivered to multiple users: as a service, on a mass scale, on the Internet. Network services offering:

More information

Software as a Service (SaaS) for Management information system using multiple tenants

Software as a Service (SaaS) for Management information system using multiple tenants Software as a Service (SaaS) for Management information system using multiple tenants Rachana Desale, Purva Kolhatkar, Anju More, Piyush Katira, Vishal Kokane Prof.S.M.Jaybhaye (Department of Information

More information

Cloud Computing. Chapter 2 Software as a Service (SaaS)

Cloud Computing. Chapter 2 Software as a Service (SaaS) Cloud Computing Chapter 2 Software as a Service (SaaS) Learning Objectives Define and describe SaaS. List the advantages and disadvantages of SaaS solutions. Define and describe OpenSaaS. Define and describe

More information

Development Lifecycle Guide

Development Lifecycle Guide Development Lifecycle Guide Enterprise Development on the Force.com Platform Version 34.0, Summer 15 @salesforcedocs Last updated: July 10, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved.

More information

A Standardized Maturity Model for Designing SaaS Service Guideline

A Standardized Maturity Model for Designing SaaS Service Guideline A Standardized Maturity Model for Designing SaaS Guideline Seungseok Kang 1, Jaeseok Myung 1, Jongheum Yeon 1, Seong-wook Ha 2, Taehyung Cho 2, Ji-man Chung 2, Sang-goo Lee 1 Department of Computer Science

More information

Statement of Direction

Statement of Direction Mobile First: Taking Mobile CRM to the Next Level 1 January 2013 Mobile First: Taking Mobile CRM to the Next Level Whitepaper Mobile First: Taking Mobile CRM to the Next Level 2 Table of Contents Notes...

More information

Oracle Middleware as Cloud Foundation. Filip Huysmans Contribute Group

Oracle Middleware as Cloud Foundation. Filip Huysmans Contribute Group Oracle Middleware as Cloud Foundation Filip Huysmans Contribute Group Join the buzz: Wifi pass: BANQ Twitter #oracleopenxperience @oopenxperience 2 Sunday 29 Monday Tuesday Wednesday Thursday 32 34 26

More information

IBM Cloud: Platform-as-a-Service

IBM Cloud: Platform-as-a-Service IBM Cloud: Platform-as-a-Service September 17 th, 2014 www.ibm.com/investor Forward Looking Statements and Non-GAAP Information Certain comments made in this presentation may be characterized as forward

More information

Datasheet: Centerprise Connector for Salesforce Key Features

Datasheet: Centerprise Connector for Salesforce Key Features Datasheet: Centerprise Connector for Salesforce Key Features Overview Astera s Centerprise Data Integrator provides an enter- prise-level data integration solution that quickly and easily migrates, transforms,

More information

5 Steps to Building a Successful Channel Program in the Cloud. Ron Huddleston SVP, ISV Alliances

5 Steps to Building a Successful Channel Program in the Cloud. Ron Huddleston SVP, ISV Alliances 5 Steps to Building a Successful Channel Program in the Cloud Ron Huddleston SVP, ISV Alliances Safe Harbor Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation

More information

RESEARCH NOTE FORCE.COM DRIVES FASTER DEVELOPMENT

RESEARCH NOTE FORCE.COM DRIVES FASTER DEVELOPMENT Document J29 RESEARCH NOTE FORCE.COM DRIVES FASTER DEVELOPMENT THE BOTTOM LINE Nucleus analyzed existing Force.com application deployments and found an average of 4.9 times faster development. End customers,

More information

Cloud Computing Technology

Cloud Computing Technology Cloud Computing Technology The Architecture Overview Danairat T. Certified Java Programmer, TOGAF Silver danairat@gmail.com, +66-81-559-1446 1 Agenda What is Cloud Computing? Case Study Service Model Architectures

More information

Overview. The Cloud. Characteristics and usage of the cloud Realities and risks of the cloud

Overview. The Cloud. Characteristics and usage of the cloud Realities and risks of the cloud Overview The purpose of this paper is to introduce the reader to the basics of cloud computing or the cloud with the aim of introducing the following aspects: Characteristics and usage of the cloud Realities

More information

<Insert Picture Here> Oracle Mobile Enterprise Application Platform Overview

<Insert Picture Here> Oracle Mobile Enterprise Application Platform Overview Oracle Mobile Enterprise Application Platform Overview Oracle Tools Product Development The following is intended to outline our general product direction. It is intended for information

More information

CSS CORP SMART MOBILITY SERVICES

CSS CORP SMART MOBILITY SERVICES Mobility Services Mobility Services As handheld devices and next generation service provider networks enable rich, real time user experiences, mobility is fast emerging as a critical component of enterprise

More information

Outline. What is cloud computing? History Cloud service models Cloud deployment forms Advantages/disadvantages

Outline. What is cloud computing? History Cloud service models Cloud deployment forms Advantages/disadvantages Ivan Zapevalov 2 Outline What is cloud computing? History Cloud service models Cloud deployment forms Advantages/disadvantages 3 What is cloud computing? 4 What is cloud computing? Cloud computing is the

More information

Certified Cloud Computing Professional Sample Material

Certified Cloud Computing Professional Sample Material Certified Cloud Computing Professional Sample Material 1. INTRODUCTION Let us get flashback of few years back. Suppose you have some important files in a system at home but, you are away from your home.

More information

ORACLE ADF MOBILE DATA SHEET

ORACLE ADF MOBILE DATA SHEET ORACLE ADF MOBILE DATA SHEET PRODUCTIVE ENTERPRISE MOBILE APPLICATIONS DEVELOPMENT KEY FEATURES Visual and declarative development Java technology enables cross-platform business logic Mobile optimized

More information

How To Synchronize With A Cwr Mobile Crm 2011 Data Management System

How To Synchronize With A Cwr Mobile Crm 2011 Data Management System CWR Mobility Customer Support Program Page 1 of 10 Version [Status] May 2012 Synchronization Best Practices Configuring CWR Mobile CRM for Success Whitepaper Copyright 2009-2011 CWR Mobility B.V. Synchronization

More information

Security to Connect Back-end APIs with HTML5 Cross Platform Apps

Security to Connect Back-end APIs with HTML5 Cross Platform Apps API Security to Connect Back-end APIs with HTML5 Cross Platform Apps Andy Thurai, CTO, Intel Big Data & Application Security Software Twitter: @AndyThurai Blog: www.thurai.net/securityblog Intel software

More information

AN OPTIMIZED ARCHITECTURE TO IMPLEMENT CRM USING THE SALESFORCE.COM

AN OPTIMIZED ARCHITECTURE TO IMPLEMENT CRM USING THE SALESFORCE.COM AN OPTIMIZED ARCHITECTURE TO IMPLEMENT CRM USING THE SALESFORCE.COM Rohit Parashar 1, Kamal Kumar Ranga 2 Ganga Institute of Technology and Management, MD University, Haryana, India 1 M.Tech Scholar, 2

More information