Top Banner
Salesforce 開発入門 Webセミナー @mitsuhiro Mitsuhiro Okamoto
54

Salesforce 開発入門

Apr 16, 2017

Download

Technology

Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Salesforce 開発入門

Salesforce開発入門 Webセミナー

@mitsuhiroMitsuhiro Okamoto

Page 2: Salesforce 開発入門

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: Salesforce 開発入門

•••

Page 4: Salesforce 開発入門
Page 5: Salesforce 開発入門
Page 6: Salesforce 開発入門
Page 7: Salesforce 開発入門
Page 8: Salesforce 開発入門
Page 9: Salesforce 開発入門

◆◆

Page 10: Salesforce 開発入門

◆◆

Page 11: Salesforce 開発入門
Page 12: Salesforce 開発入門

◆◆

Page 13: Salesforce 開発入門
Page 14: Salesforce 開発入門
Page 15: Salesforce 開発入門

u ドラッグ & ドロップでテーブルやカラムを定義

u Salesforceではオブジェクトと項目と呼ばれる

u 項目レベルにアクセスセキュリティの設定可能

u データベースを定義するとCRUD操作を行うためのGUIが自動生成

u 自動生成されたUIはカスタマイズ可能

ブラウザ上のER図データベースを作成

Page 16: Salesforce 開発入門

u ドラッグ & ドロップでビジネスワークフローや承認プロセスを定義

u バリデーションルール、数式などを駆使

u Force.comフローを利用すれば、画面デザイン、遷移も含めて定義可能

u 外部システムへのコールアウトや、Eメールなどの送信といった高度な処理も可能

フローチャートでビジネスロジックを作成

Page 17: Salesforce 開発入門

Experience • Builder • Ecosystem

u CRUD操作をおこなうためのGUI及び検索画面を自動生成

u データベースの変更に対して即座に反映

u レスポンシブUIによりモバイルにも対応

u Salesforce1モバイルコンテナ

u Salesforceの更新で常に新しい機能が追加

u インライン編集,Einstein (AI機能) など

自動で生成される高品質でカスタマイズ可能なGUI

Page 18: Salesforce 開発入門
Page 19: Salesforce 開発入門
Page 20: Salesforce 開発入門

u ドラッグ & ドロップでビジネスワークフローや承認プロセスを定義

u バリデーションルール、数式などを駆使

u Force.comフローを利用すれば、画面デザイン、遷移も含めて定義可能

u 外部システムへのコールアウトや、Eメールなどの送信といった高度な処理も可能

フローチャートでビジネスロジックを作成

Page 21: Salesforce 開発入門

: レポート・ダッシュボードビルダー

Page 22: Salesforce 開発入門

Demo

Page 23: Salesforce 開発入門
Page 24: Salesforce 開発入門

◆◆

◆◆

Page 25: Salesforce 開発入門
Page 26: Salesforce 開発入門

GUI

Lightning Component , Visualforce

Page 27: Salesforce 開発入門

API

Other

Cloud

u データアクセスAPI

u SOAP API, REST API, Bulk API

u メタデータアクセスAPI

u Metadata API, Tooling API

u リアルタイムAPI

u Streaming API

自動で生成される豊富なAPI

Page 28: Salesforce 開発入門

Demo

Page 29: Salesforce 開発入門

◆◆◆◆

◆◆◆

◆◆

Page 30: Salesforce 開発入門

public Double amount { get; set; }public Double rate { get; set; }public Integer years { get; set; }

public Double calculateMonthlyPayment() {Integer months = years * 12;Double monthlyRate = rate / (12 * 100);return amount * (monthlyRate/

(1 - Math.pow(1 + monthlyRate, -months)));}

public class MortgageCalculator {

}

Page 31: Salesforce 開発入門
Page 32: Salesforce 開発入門

◆◆

◆◆

◆◆

◆◆

◆◆

◆◆

◆◆

Page 33: Salesforce 開発入門
Page 34: Salesforce 開発入門
Page 35: Salesforce 開発入門

Demo

Page 36: Salesforce 開発入門

••

••

Page 37: Salesforce 開発入門
Page 38: Salesforce 開発入門
Page 39: Salesforce 開発入門

<apex:page standardController="Contact">

<apex:form>

<apex:inputField value="{!contact.firstname}"/>

<apex:inputField value="{!contact.lastname}"/>

<apex:commandButton action="{!save}" value="Save"/>

</apex:form>

</apex:page>

◆◆

Page 40: Salesforce 開発入門
Page 41: Salesforce 開発入門
Page 42: Salesforce 開発入門
Page 43: Salesforce 開発入門

Page 44: Salesforce 開発入門

Page 45: Salesforce 開発入門

Page 46: Salesforce 開発入門

Page 47: Salesforce 開発入門
Page 48: Salesforce 開発入門

Demo

Page 49: Salesforce 開発入門
Page 50: Salesforce 開発入門
Page 51: Salesforce 開発入門

◆◆

データモデル

プログラミングモデル

ビジュアルツール

アプリ開発基盤がレイヤを超えて

垂直統合

Page 52: Salesforce 開発入門

www.trailhead.salesforce.com

無料のオンライントレーニングAPIを使ったコーディングチェック

多彩なコンテンツ

Page 53: Salesforce 開発入門

http://bit.ly/DevSurvey_0303

アンケート完了後に本日の資料のダウンロードボタンが表示されます。SlideShare をご覧になれない方は、資料希望の旨をQuestionよりおしらせください。

Page 54: Salesforce 開発入門

Thank Y u