SlideShare une entreprise Scribd logo
1  sur  42
#Summer15Developers
Summer ‘15
Preview Release Webinar
May 7, 2015
#Summer15Developers
Speakers
Samantha Ready
Developer Evangelist
@samantha_ready
Peter Chittum
Developer Evangelist
@pchittum
Eric Jacobson
Sr. Director, Product Management
#Summer15Developers
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, 2015. 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.
#Summer15Developers
@salesforcedevs / #Summer15Developers
Go Social!
Salesforce Developers
+Salesforce Developers
Salesforce Developers
Salesforce Developers The video will be posted to YouTube
& the webinar recap page
(same URL as registration).
This webinar is being recorded!
#Summer15Developers
▪ Head to the Success Community
– http://bit.ly/ReleaseReadinessSalesforce
– #Summer15Developers
▪ Respect Q&A etiquette
– Please don’t repeat questions. The support team is
working their way down the queue.
▪ Stick around for live Q&A at the end
– Speakers will tackle more questions at the end, time-
allowing.
Have Questions?
#Summer15Developers
Agenda
1. User Interface
2. Apex
3. Big Data/Analytics
4. Integration and APIs
5. Security and Identity
#Summer15Developers
Lightning App Builder - GA Summer 15!
Drag & Drop
Build with standard,
custom & partner
Lightning Components
Any Mobile
Device
Design apps for every
screen from one canvas
Now anyone can build apps faster
#Summer15Developers
Apps in Salesforce1 Mobile
#Summer15Developers
What’s in an App?
Lightning
PageLightning
Components
Global Actions
#Summer15Developers
Responsive Design
▪ Single Lightning Page for
multiple devices
▪ Templates define layout
behavior by rearranging
regions
▪ Summer ‘15 supports
Phone and Tablet
#Summer15Developers
Components are the
“building blocks” of
an application
#Summer15Developers
Standard Components
Built by Salesforce
Custom charts Data entry tools Custom data
layout
Dynamic maps
Left
nav
Publisher bar Feed
items
Tasks
Sliders Multi-view
charts
Pass/Fail
Custom Components
Built by customer developers
AppExchange Components
Built by Partners
Lightning Components
#Summer15Developers
Standard Components for App Builder
▪ Filter List
▪ Recent Items
▪ Report Chart
▪ Rich Text
▪ Visualforce Page
▪ More components to be added over time
#Summer15Developers
Lightning Components (Beta)
▪ Create picklists for Lightning App Builder components
<design:attribute name="Name"
datasource="value1,value2,value3" />
▪ Referential integrity validation expanded
– Checks component names, custom object and field names,
classnames, etc
– Includes references in JS, explicit dependencies from
<aura:dependency>, and refs extended from an inheritance
hierarchy
#Summer15Developers
Demo: Lightning App Builder
#Summer15Developers
Release Status
▪ GA Summer 15
– Lightning App Builder
– Lightning Components for custom Lightning Apps
• example:
https://na24.salesforce.com/c/myApp.app
▪ Beta Summer 15
– Lightning Components for Salesforce1 Mobile
<aura:component implements=”force:appHostable”>
#Summer15Developers
Visualforce Critical Updates
▪ Reduced access for Apex Classes using with sharing
keyword
▪ Static Resources served from Visualforce domain
▪ PageReference getContent() and
getContentAsPDF()methods behave as callouts
#Summer15Developers
Visualforce
▪ Enhanced Visualforce mapping features
– Create custom map markers easily
– Add info windows to map markers
<apex:mapMarker />
<apex:mapInfoWindow />
#Summer15Developers
Agenda
1. User Interface
2. Apex
3. Big Data/Analytics
4. Integration and APIs
5. Security and Identity
#Summer15Developers
Apex and SOQL
▪ Location and Distance variables allowed in SOQL and
SOSL queries
WHERE DISTANCE(My_Location_Field__c, :myLocation,
'mi') < :myDistance];
WHERE DISTANCE(My_Location_Field__c,
GEOLOCATION(:myLatitude, :myLongitude), 'mi') <10];
#Summer15Developers
Demo: Visualforce and Apex
#Summer15Developers
Apex
▪ Reorder your batch jobs in the flex queue programmatically
Boolean isSuccess = System.moveFlexQueueJob(jobId,
positionNumber);
▪ Iteration order for Maps and Sets is now predicable
▪ New Classes/Methods
– createExternalUser(SObject, String, [String],
[Boolean])
– Classes in the Search Namespace
– Classes in the DataSource Namespace
#Summer15Developers
Agenda
1. User Interface
2. Apex
3. Big Data/Analytics
4. Integration and APIs
5. Security and Identity
#Summer15Developers
Analytics
▪ Add your data with the Wave Mobile Connector (iOS)
▪ Support for Apple Watch
▪ Create and Edit Dashboards
▪ Other Various Enhancements
– compound filters supported
– easily return to Salesforce1
– stacked bar support
#Summer15Developers
BigObjects (pilot)
Manage and store large sets of data
▪ BigObjects targeted at:
– Customer 360 - point-of-sale data
– Data Archive - orchestrate archive from production storage
– Data Lake - store massive data sets in native format
– Email Event Ingest - preserve email histories
▪ Defined by Metadata API
▪ Populated by Bulk API or SOAP API
#Summer15Developers
Data Pipelines (pilot)
A new capability to leverage all your customer data for
intelligence and actionable information
▪ Build data-driven apps
▪ Use with Apache Pig scripts on Hadoop to process large-
scale data stored in Salesforce
▪ NEW: Error logging to help when jobs don’t execute
– Available via the via Tooling API
– Appear in the job run information in the Dev Console
#Summer15Developers
Agenda
1. User Interface
2. Apex
3. Big Data/Analytics
4. Integration and APIs
5. Security and Identity
#Summer15Developers
Integration: Lightning Connect Apex Connector
▪ Extend functionality of Lightning Connect
▪ Use Apex to write connector to external data source
▪ Access any external data as sObject
#Summer15Developers
Integration: Lightning Connect Salesforce Connector
▪ Create integrations to other orgs
▪ Supports read-only org-to-org data
▪ Implement hub-and-spoke integrations
– Create source org data model
– Create package with external data model
#Summer15Developers
Salesforce Connector v Salesforce 2 Salesforce
▪ S2S
– Data Sync
– Duplicate Records
– Pub/Sub Model
– Org-based Auth
▪ Salesforce Connector
– Real-time request
– No duplicate data
– Schema Sync
– User-based Auth
#Summer15Developers
APIs: Composite REST API Requests
▪ Create a batch of
requests to REST
API
▪ Bulk requests
▪ Optimize API request
limits
Program
Offering
Update RSF
and Formula
INSERT
RETRIEVE
BATCH
#Summer15Developers
APIs: Composite REST API Requests
/services/data/v34.0/composite/batch
{ "batchRequests": [
{
"method": "POST",
"url": "v34.0/sobjects/Offering__c",
"richInput": { "Name": "Dramatics" }
},
{
"method": "GET",
"url": "v34.0/sobjects/Program__c/a01B00..."
}
]
}
{ "hasErrors": false,
"results": [
{
"statusCode": 201,
"result": {...id, errors, etc.}
},
{
"statusCode": 200,
"result": {...fields, errors, etc.}
}
]
}
array
request 1
request 2
array
response 1
response 2
#Summer15Developers
Demo: Integration and APIs
#Summer15Developers
Agenda
1. User Interface
2. Apex
3. Big Data/Analytics
4. Integration and APIs
5. Security and Identity
#Summer15Developers
Security Features
▪ Extended Platform Encryption Features
– Encrypition at Rest on Platform
– Encrypt most field types
– Encrypt files
– No hardware or devices, just point-and-click setup
▪ Longer Minimum Password
▪ Advanced Networking Protocols
#Summer15Developers
Authorization and Identity Candy
▪ Admin Experience Candy:
▪ User Provisioning for Connected Apps is GA
▪ OAuth Connected App-Specific Session Time Out
▪ More Flexibility for Google and LinkedIn Provider Config
▪ User Experience Candy:
▪ Login Once for Concurrent apps that use OpenId Connect
▪ Custom Logout Screen
#Summer15Developers
Thank You
#Summer15Developers
Try it out
developer.salesforce.com/releases
#Summer15Developers
May 14, 2015
Summer ‘15: User Provisioning for Connected
Apps
Upcoming Webinar
#Summer15DevelopersChallenge Yourself! http://developer.salesforce.com/trailhead
• Interactive learning paths
• Earn badges and points
• Declarative and Programmatic
BRAND NEW! Introducing Trailhead
#Summer15Developers
Survey
Your feedback is crucial to the success
of our webinar programs. Thank you!
http://bit.ly/salesforce-summer15
#forcewebinar
#Summer15Developers
Q & A
Samantha Ready
Developer Evangelist
@samantha_ready
Peter Chittum
Developer Evangelist
@pchittum
Eric Jacobson
Sr. Director, Product Management
Survey:
http://bit.ly/salesforce-summer15

Contenu connexe

Tendances

Tendances (20)

Summer '16 Release Preview Webinar
Summer '16 Release Preview WebinarSummer '16 Release Preview Webinar
Summer '16 Release Preview Webinar
 
Force.com Friday: Intro to Force.com
Force.com Friday: Intro to Force.comForce.com Friday: Intro to Force.com
Force.com Friday: Intro to Force.com
 
Write bulletproof trigger code
Write bulletproof trigger codeWrite bulletproof trigger code
Write bulletproof trigger code
 
Lightning web components episode 2- work with salesforce data
Lightning web components   episode 2- work with salesforce dataLightning web components   episode 2- work with salesforce data
Lightning web components episode 2- work with salesforce data
 
Lightning Design System and Components for Visualforce Developers
Lightning Design System and Components for Visualforce DevelopersLightning Design System and Components for Visualforce Developers
Lightning Design System and Components for Visualforce Developers
 
Manage Massive Datasets with Big Objects & Async SOQL
Manage Massive Datasets with  Big Objects & Async SOQLManage Massive Datasets with  Big Objects & Async SOQL
Manage Massive Datasets with Big Objects & Async SOQL
 
Salesforce.com API Series: Service Cloud Console Deep Dive
Salesforce.com API Series: Service Cloud Console Deep DiveSalesforce.com API Series: Service Cloud Console Deep Dive
Salesforce.com API Series: Service Cloud Console Deep Dive
 
Local development with Open Source Base Components
Local development with Open Source Base ComponentsLocal development with Open Source Base Components
Local development with Open Source Base Components
 
Salesforce Lightning component framework from 0 to app
Salesforce Lightning component framework from 0 to appSalesforce Lightning component framework from 0 to app
Salesforce Lightning component framework from 0 to app
 
TrailheaDX and Summer '19: Developer Highlights
TrailheaDX and Summer '19: Developer HighlightsTrailheaDX and Summer '19: Developer Highlights
TrailheaDX and Summer '19: Developer Highlights
 
Using Oculus Rift and Virtual Reality to Visualize Data on Salesforce
Using Oculus Rift and Virtual Reality to Visualize Data on SalesforceUsing Oculus Rift and Virtual Reality to Visualize Data on Salesforce
Using Oculus Rift and Virtual Reality to Visualize Data on Salesforce
 
ISV Tech Enablement Webinar April 2017
ISV Tech Enablement Webinar April 2017ISV Tech Enablement Webinar April 2017
ISV Tech Enablement Webinar April 2017
 
Lightning web components - Episode 1 - An Introduction
Lightning web components - Episode 1 - An IntroductionLightning web components - Episode 1 - An Introduction
Lightning web components - Episode 1 - An Introduction
 
Lightning components performance best practices
Lightning components performance best practicesLightning components performance best practices
Lightning components performance best practices
 
Building End To End Lightning Apps - Dreamforce 2014
Building End To End Lightning Apps - Dreamforce 2014Building End To End Lightning Apps - Dreamforce 2014
Building End To End Lightning Apps - Dreamforce 2014
 
Introduction to Apex for Developers
Introduction to Apex for DevelopersIntroduction to Apex for Developers
Introduction to Apex for Developers
 
Introduction to the Wave Platform API
Introduction to the Wave Platform APIIntroduction to the Wave Platform API
Introduction to the Wave Platform API
 
Salesforce API Series: Integrating Applications with Force.com Webinar
Salesforce API Series: Integrating Applications with Force.com WebinarSalesforce API Series: Integrating Applications with Force.com Webinar
Salesforce API Series: Integrating Applications with Force.com Webinar
 
Force.com Friday - Intro to Force.com
Force.com Friday -  Intro to Force.comForce.com Friday -  Intro to Force.com
Force.com Friday - Intro to Force.com
 
Build, Manage, and Deploy Mobile Apps Faster with App Cloud Mobile
Build, Manage, and Deploy Mobile Apps Faster with App Cloud MobileBuild, Manage, and Deploy Mobile Apps Faster with App Cloud Mobile
Build, Manage, and Deploy Mobile Apps Faster with App Cloud Mobile
 

Similaire à Summer '15 Release Preview: Platform Feature Highlights

Lightning breakout mun world tour 2015 sfsans
Lightning breakout mun world tour 2015 sfsansLightning breakout mun world tour 2015 sfsans
Lightning breakout mun world tour 2015 sfsans
Salesforce Deutschland
 

Similaire à Summer '15 Release Preview: Platform Feature Highlights (20)

[MBF2] Plate-forme Salesforce par Peter Chittum
[MBF2] Plate-forme Salesforce par Peter Chittum[MBF2] Plate-forme Salesforce par Peter Chittum
[MBF2] Plate-forme Salesforce par Peter Chittum
 
Roadmap Lightning Updates (November 3, 2016)
Roadmap Lightning Updates (November 3, 2016)Roadmap Lightning Updates (November 3, 2016)
Roadmap Lightning Updates (November 3, 2016)
 
Code live with kevin o'hara lwc oss dashboard
Code live with kevin o'hara   lwc oss dashboardCode live with kevin o'hara   lwc oss dashboard
Code live with kevin o'hara lwc oss dashboard
 
Integrating with salesforce
Integrating with salesforceIntegrating with salesforce
Integrating with salesforce
 
Introduction to MuleSoft
Introduction to MuleSoftIntroduction to MuleSoft
Introduction to MuleSoft
 
Winter '15 Release-Overview and Highlights
Winter '15 Release-Overview and HighlightsWinter '15 Release-Overview and Highlights
Winter '15 Release-Overview and Highlights
 
Spring ’15 Release Preview - Platform Feature Highlights
Spring ’15 Release Preview - Platform Feature HighlightsSpring ’15 Release Preview - Platform Feature Highlights
Spring ’15 Release Preview - Platform Feature Highlights
 
Kitchener Salesforce Developer Group Event - Introduction to dev ops with Sal...
Kitchener Salesforce Developer Group Event - Introduction to dev ops with Sal...Kitchener Salesforce Developer Group Event - Introduction to dev ops with Sal...
Kitchener Salesforce Developer Group Event - Introduction to dev ops with Sal...
 
Building einstein analytics apps uk-compressed
Building einstein analytics apps   uk-compressedBuilding einstein analytics apps   uk-compressed
Building einstein analytics apps uk-compressed
 
San Diego Salesforce User Group - Lightning Overview
San Diego Salesforce User Group - Lightning OverviewSan Diego Salesforce User Group - Lightning Overview
San Diego Salesforce User Group - Lightning Overview
 
Lightning breakout mun world tour 2015 sfsans
Lightning breakout mun world tour 2015 sfsansLightning breakout mun world tour 2015 sfsans
Lightning breakout mun world tour 2015 sfsans
 
Einstein Analytics for Developers
Einstein Analytics for DevelopersEinstein Analytics for Developers
Einstein Analytics for Developers
 
Salesforce platform session 2
 Salesforce platform session 2 Salesforce platform session 2
Salesforce platform session 2
 
Developer Preview Live – Release Readiness LIVE, Spring '18
Developer Preview Live – Release Readiness LIVE, Spring '18Developer Preview Live – Release Readiness LIVE, Spring '18
Developer Preview Live – Release Readiness LIVE, Spring '18
 
Elevate london dec 2014.pptx
Elevate london dec 2014.pptxElevate london dec 2014.pptx
Elevate london dec 2014.pptx
 
SD DUG Salesforce Lightning Week
SD DUG Salesforce Lightning WeekSD DUG Salesforce Lightning Week
SD DUG Salesforce Lightning Week
 
AngularJS App In Two Weeks
AngularJS App In Two WeeksAngularJS App In Two Weeks
AngularJS App In Two Weeks
 
TrailheaDX India : Developer Highlights
TrailheaDX India : Developer HighlightsTrailheaDX India : Developer Highlights
TrailheaDX India : Developer Highlights
 
Trailhead live - Overview of Salesforce App Cloud
Trailhead live - Overview of Salesforce App CloudTrailhead live - Overview of Salesforce App Cloud
Trailhead live - Overview of Salesforce App Cloud
 
Elevate Madrid Essentials - Advance Track
Elevate Madrid Essentials - Advance TrackElevate Madrid Essentials - Advance Track
Elevate Madrid Essentials - Advance Track
 

Plus de Salesforce Developers

Plus de Salesforce Developers (20)

Sample Gallery: Reference Code and Best Practices for Salesforce Developers
Sample Gallery: Reference Code and Best Practices for Salesforce DevelopersSample Gallery: Reference Code and Best Practices for Salesforce Developers
Sample Gallery: Reference Code and Best Practices for Salesforce Developers
 
Maximizing Salesforce Lightning Experience and Lightning Component Performance
Maximizing Salesforce Lightning Experience and Lightning Component PerformanceMaximizing Salesforce Lightning Experience and Lightning Component Performance
Maximizing Salesforce Lightning Experience and Lightning Component Performance
 
Why developers shouldn’t miss TrailheaDX India
Why developers shouldn’t miss TrailheaDX IndiaWhy developers shouldn’t miss TrailheaDX India
Why developers shouldn’t miss TrailheaDX India
 
CodeLive: Build Lightning Web Components faster with Local Development
CodeLive: Build Lightning Web Components faster with Local DevelopmentCodeLive: Build Lightning Web Components faster with Local Development
CodeLive: Build Lightning Web Components faster with Local Development
 
CodeLive: Converting Aura Components to Lightning Web Components
CodeLive: Converting Aura Components to Lightning Web ComponentsCodeLive: Converting Aura Components to Lightning Web Components
CodeLive: Converting Aura Components to Lightning Web Components
 
Enterprise-grade UI with open source Lightning Web Components
Enterprise-grade UI with open source Lightning Web ComponentsEnterprise-grade UI with open source Lightning Web Components
Enterprise-grade UI with open source Lightning Web Components
 
Live coding with LWC
Live coding with LWCLive coding with LWC
Live coding with LWC
 
Lightning web components - Episode 4 : Security and Testing
Lightning web components  - Episode 4 : Security and TestingLightning web components  - Episode 4 : Security and Testing
Lightning web components - Episode 4 : Security and Testing
 
Migrating CPQ to Advanced Calculator and JSQCP
Migrating CPQ to Advanced Calculator and JSQCPMigrating CPQ to Advanced Calculator and JSQCP
Migrating CPQ to Advanced Calculator and JSQCP
 
Scale with Large Data Volumes and Big Objects in Salesforce
Scale with Large Data Volumes and Big Objects in SalesforceScale with Large Data Volumes and Big Objects in Salesforce
Scale with Large Data Volumes and Big Objects in Salesforce
 
Replicate Salesforce Data in Real Time with Change Data Capture
Replicate Salesforce Data in Real Time with Change Data CaptureReplicate Salesforce Data in Real Time with Change Data Capture
Replicate Salesforce Data in Real Time with Change Data Capture
 
Modern Development with Salesforce DX
Modern Development with Salesforce DXModern Development with Salesforce DX
Modern Development with Salesforce DX
 
Get Into Lightning Flow Development
Get Into Lightning Flow DevelopmentGet Into Lightning Flow Development
Get Into Lightning Flow Development
 
Integrate CMS Content Into Lightning Communities with CMS Connect
Integrate CMS Content Into Lightning Communities with CMS ConnectIntegrate CMS Content Into Lightning Communities with CMS Connect
Integrate CMS Content Into Lightning Communities with CMS Connect
 
Modern App Dev: Modular Development Strategies
Modern App Dev: Modular Development StrategiesModern App Dev: Modular Development Strategies
Modern App Dev: Modular Development Strategies
 
Vs Code for Salesforce Developers
Vs Code for Salesforce DevelopersVs Code for Salesforce Developers
Vs Code for Salesforce Developers
 
Vs Code for Salesforce Developers
Vs Code for Salesforce DevelopersVs Code for Salesforce Developers
Vs Code for Salesforce Developers
 
Introduction to Einstein Bots
Introduction to Einstein Bots Introduction to Einstein Bots
Introduction to Einstein Bots
 
Introduction to MuleSoft Anytime Platform
Introduction to MuleSoft Anytime PlatformIntroduction to MuleSoft Anytime Platform
Introduction to MuleSoft Anytime Platform
 
Developing Smarter Apps with Einstein Platform Services
Developing Smarter Apps with Einstein Platform ServicesDeveloping Smarter Apps with Einstein Platform Services
Developing Smarter Apps with Einstein Platform Services
 

Dernier

Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Dernier (20)

A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 

Summer '15 Release Preview: Platform Feature Highlights

  • 2. #Summer15Developers Speakers Samantha Ready Developer Evangelist @samantha_ready Peter Chittum Developer Evangelist @pchittum Eric Jacobson Sr. Director, Product Management
  • 3. #Summer15Developers 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, 2015. 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.
  • 4. #Summer15Developers @salesforcedevs / #Summer15Developers Go Social! Salesforce Developers +Salesforce Developers Salesforce Developers Salesforce Developers The video will be posted to YouTube & the webinar recap page (same URL as registration). This webinar is being recorded!
  • 5. #Summer15Developers ▪ Head to the Success Community – http://bit.ly/ReleaseReadinessSalesforce – #Summer15Developers ▪ Respect Q&A etiquette – Please don’t repeat questions. The support team is working their way down the queue. ▪ Stick around for live Q&A at the end – Speakers will tackle more questions at the end, time- allowing. Have Questions?
  • 6. #Summer15Developers Agenda 1. User Interface 2. Apex 3. Big Data/Analytics 4. Integration and APIs 5. Security and Identity
  • 7. #Summer15Developers Lightning App Builder - GA Summer 15! Drag & Drop Build with standard, custom & partner Lightning Components Any Mobile Device Design apps for every screen from one canvas Now anyone can build apps faster
  • 9. #Summer15Developers What’s in an App? Lightning PageLightning Components Global Actions
  • 10. #Summer15Developers Responsive Design ▪ Single Lightning Page for multiple devices ▪ Templates define layout behavior by rearranging regions ▪ Summer ‘15 supports Phone and Tablet
  • 12. #Summer15Developers Standard Components Built by Salesforce Custom charts Data entry tools Custom data layout Dynamic maps Left nav Publisher bar Feed items Tasks Sliders Multi-view charts Pass/Fail Custom Components Built by customer developers AppExchange Components Built by Partners Lightning Components
  • 13. #Summer15Developers Standard Components for App Builder ▪ Filter List ▪ Recent Items ▪ Report Chart ▪ Rich Text ▪ Visualforce Page ▪ More components to be added over time
  • 14. #Summer15Developers Lightning Components (Beta) ▪ Create picklists for Lightning App Builder components <design:attribute name="Name" datasource="value1,value2,value3" /> ▪ Referential integrity validation expanded – Checks component names, custom object and field names, classnames, etc – Includes references in JS, explicit dependencies from <aura:dependency>, and refs extended from an inheritance hierarchy
  • 16. #Summer15Developers Release Status ▪ GA Summer 15 – Lightning App Builder – Lightning Components for custom Lightning Apps • example: https://na24.salesforce.com/c/myApp.app ▪ Beta Summer 15 – Lightning Components for Salesforce1 Mobile <aura:component implements=”force:appHostable”>
  • 17. #Summer15Developers Visualforce Critical Updates ▪ Reduced access for Apex Classes using with sharing keyword ▪ Static Resources served from Visualforce domain ▪ PageReference getContent() and getContentAsPDF()methods behave as callouts
  • 18. #Summer15Developers Visualforce ▪ Enhanced Visualforce mapping features – Create custom map markers easily – Add info windows to map markers <apex:mapMarker /> <apex:mapInfoWindow />
  • 19. #Summer15Developers Agenda 1. User Interface 2. Apex 3. Big Data/Analytics 4. Integration and APIs 5. Security and Identity
  • 20. #Summer15Developers Apex and SOQL ▪ Location and Distance variables allowed in SOQL and SOSL queries WHERE DISTANCE(My_Location_Field__c, :myLocation, 'mi') < :myDistance]; WHERE DISTANCE(My_Location_Field__c, GEOLOCATION(:myLatitude, :myLongitude), 'mi') <10];
  • 22. #Summer15Developers Apex ▪ Reorder your batch jobs in the flex queue programmatically Boolean isSuccess = System.moveFlexQueueJob(jobId, positionNumber); ▪ Iteration order for Maps and Sets is now predicable ▪ New Classes/Methods – createExternalUser(SObject, String, [String], [Boolean]) – Classes in the Search Namespace – Classes in the DataSource Namespace
  • 23. #Summer15Developers Agenda 1. User Interface 2. Apex 3. Big Data/Analytics 4. Integration and APIs 5. Security and Identity
  • 24. #Summer15Developers Analytics ▪ Add your data with the Wave Mobile Connector (iOS) ▪ Support for Apple Watch ▪ Create and Edit Dashboards ▪ Other Various Enhancements – compound filters supported – easily return to Salesforce1 – stacked bar support
  • 25. #Summer15Developers BigObjects (pilot) Manage and store large sets of data ▪ BigObjects targeted at: – Customer 360 - point-of-sale data – Data Archive - orchestrate archive from production storage – Data Lake - store massive data sets in native format – Email Event Ingest - preserve email histories ▪ Defined by Metadata API ▪ Populated by Bulk API or SOAP API
  • 26. #Summer15Developers Data Pipelines (pilot) A new capability to leverage all your customer data for intelligence and actionable information ▪ Build data-driven apps ▪ Use with Apache Pig scripts on Hadoop to process large- scale data stored in Salesforce ▪ NEW: Error logging to help when jobs don’t execute – Available via the via Tooling API – Appear in the job run information in the Dev Console
  • 27. #Summer15Developers Agenda 1. User Interface 2. Apex 3. Big Data/Analytics 4. Integration and APIs 5. Security and Identity
  • 28. #Summer15Developers Integration: Lightning Connect Apex Connector ▪ Extend functionality of Lightning Connect ▪ Use Apex to write connector to external data source ▪ Access any external data as sObject
  • 29. #Summer15Developers Integration: Lightning Connect Salesforce Connector ▪ Create integrations to other orgs ▪ Supports read-only org-to-org data ▪ Implement hub-and-spoke integrations – Create source org data model – Create package with external data model
  • 30. #Summer15Developers Salesforce Connector v Salesforce 2 Salesforce ▪ S2S – Data Sync – Duplicate Records – Pub/Sub Model – Org-based Auth ▪ Salesforce Connector – Real-time request – No duplicate data – Schema Sync – User-based Auth
  • 31. #Summer15Developers APIs: Composite REST API Requests ▪ Create a batch of requests to REST API ▪ Bulk requests ▪ Optimize API request limits Program Offering Update RSF and Formula INSERT RETRIEVE BATCH
  • 32. #Summer15Developers APIs: Composite REST API Requests /services/data/v34.0/composite/batch { "batchRequests": [ { "method": "POST", "url": "v34.0/sobjects/Offering__c", "richInput": { "Name": "Dramatics" } }, { "method": "GET", "url": "v34.0/sobjects/Program__c/a01B00..." } ] } { "hasErrors": false, "results": [ { "statusCode": 201, "result": {...id, errors, etc.} }, { "statusCode": 200, "result": {...fields, errors, etc.} } ] } array request 1 request 2 array response 1 response 2
  • 34. #Summer15Developers Agenda 1. User Interface 2. Apex 3. Big Data/Analytics 4. Integration and APIs 5. Security and Identity
  • 35. #Summer15Developers Security Features ▪ Extended Platform Encryption Features – Encrypition at Rest on Platform – Encrypt most field types – Encrypt files – No hardware or devices, just point-and-click setup ▪ Longer Minimum Password ▪ Advanced Networking Protocols
  • 36. #Summer15Developers Authorization and Identity Candy ▪ Admin Experience Candy: ▪ User Provisioning for Connected Apps is GA ▪ OAuth Connected App-Specific Session Time Out ▪ More Flexibility for Google and LinkedIn Provider Config ▪ User Experience Candy: ▪ Login Once for Concurrent apps that use OpenId Connect ▪ Custom Logout Screen
  • 39. #Summer15Developers May 14, 2015 Summer ‘15: User Provisioning for Connected Apps Upcoming Webinar
  • 40. #Summer15DevelopersChallenge Yourself! http://developer.salesforce.com/trailhead • Interactive learning paths • Earn badges and points • Declarative and Programmatic BRAND NEW! Introducing Trailhead
  • 41. #Summer15Developers Survey Your feedback is crucial to the success of our webinar programs. Thank you! http://bit.ly/salesforce-summer15 #forcewebinar
  • 42. #Summer15Developers Q & A Samantha Ready Developer Evangelist @samantha_ready Peter Chittum Developer Evangelist @pchittum Eric Jacobson Sr. Director, Product Management Survey: http://bit.ly/salesforce-summer15