アフィリエイト広告を利用しています

広告

この広告は30日以上更新がないブログに表示されております。
新規記事の投稿を行うことで、非表示にすることが可能です。
posted by fanblog

2018年06月15日

Sales Cloud(商談の管理15%)商談ー見積テスト編

自分もSFDC大学に通っているので、

やっていた問題を共有します。

欲しけりゃくれてやる・・・。

探せ!

この世の全てをそこに置いてきた〜笑

続きを読む...
【このカテゴリーの最新記事】
posted by Jude at 20:16 | Comment(0) | 資格

2018年06月14日

Sales Cloud(商談の管理15%)商談ー見積編

今回、セールスクラウドコンサルタント

資格に関連する商談の管理知識を

共有したいと思います。

Salesforceの商談(opportunity)を

使いこなせるまで、なかなか時間が

必要かと考えられます。

ですが、それはしょうがないじゃないですか

簡単に理解できるなら、そんなもんはどうでしょうかね続きを読む...

posted by Jude at 00:00 | Comment(0) | Sales Cloud

2018年06月13日

セールスクラウドコンサルタントに簿記知識必要?

sales cloud consultant資格を目指し

だんだん、

BS:バランスシート(Balance Sheet)
PL:収益損益表(Profit Loss)
に目をつけるでしょう

私もその一人です。

では、エンジンニアとして

ずっと技術ばかりでした。

数値などを見ると頭が痛くなる、

集中力もきれませんか

そこで、今回、BSとPLを簡単に理解してもらう

ため、記事を書きました。

続きを読む...
posted by Jude at 00:00 | Comment(0) | 資産

2018年06月12日

SFDC Sales Cloud コンサルタント 資格

Sales Cloud コンサルタント資格を

目指している方だから、ここに

きたかと思います。

試験準備に入るとつい過去問を

探す傾向があるかも

しかし、そこが大事ではない

と思っています。

では、何が大事?

続きを読む...
posted by Jude at 00:00 | Comment(0) | 資格

2018年06月11日

SFDC TrailHeadをする際にダメな時にどうする?

Salesforce大学TrrailHeadを

練習する時に

たまにどうしても通らない場合

ありません?

よくあるでしょうk

私も、よくあるから、

そんな時、自分がやったこと

を共有します。

続きを読む...
posted by Jude at 00:00 | Comment(0) | TrailHead

2018年06月10日

SFDC 参照関係の辿り方(SOQL)

今回、ショット記事です。

参照関係の場合に

親へのアクセス方法について

共有します。

基本の基本かもが

以外に知らない子もいました。

目次

(子)取引先責任者から(親)取引先へのアクセス

カスタム項目なら

API参照名の末尾「__c」の代わりに「__r」とする事で、

辿ることが出来る。

WHERE句の条件として使用することも可能。
・E.X.コード

Integer i = 0;

for(contact con :[Select Id, Name, Account.Name FROM Contact limit 5]){

    System.debug('*****取引先名' + i + '  ' + con.Account.Name);

    i++;

}

・出力結果
f:id:jude2016:20180721155403p:plain

親から子へのアクセス

・E.X.コード

Integer i = 0;

for(account acc :[Select Id, Name, (Select Id, Name FROM Contacts) FROM account]){

    if(acc.Contacts.size() > 0){

    	System.debug('親ー取引先名:' + acc.Name);

    }

    for(contact con :acc.Contacts){

        System.debug('          子ー取引先責任者名:' + con.Name);

    }

}

・出力結果
f:id:jude2016:20180721160721p:plain

Select Id, Name, (Select Id, Name FROM Contacts) FROM account;

Select Id, Name FROM Contacts

部分がサブクエリと呼びます。

Contactsが子リレーション名である

オブジェクトの設定画面から確認できます。

f:id:jude2016:20180721160905p:plain


取引先(Account)と取引先責任者(Contact)の関係は下記の
画像で確認できます。

https://developer.salesforce.com/docs/resources/img/ja-jp/214.0?doc_id=images%2Frel_basic.gif&folder=soql_sosl

posted by Jude at 00:00 | Comment(0) | サブエクリ

2018年06月09日

日付間の日数計算

日付計算好きです。

そこで今回は、

2つの日付の期間日数を計算する方法について

ご紹介します。

続きを読む...
posted by Jude at 07:00 | Comment(0) | 日付計算

2018年06月08日

日付 月初・月末

日付の計算や比較は

開発する際に避けれないものか

と考えております。

今回、日付の月初を求めるため

色々なサンプルを提供させていただきます。

最後まで付き合ってください。

意見も待っております。

月初

現在日付の月初

現在の日付:2018年07月21日とする

・E.X. Code

// 実コード
Date currentDate = Date.Today();
Date curFirstDay = currentDate.toStartOfMonth();

// デバッグ確認
System.debug('===========================');
System.debug('■■■ currentDate-->' + currentDate);
System.debug('■■■ curFirstDay-->' + curFirstDay);
System.debug('===========================');

・出力結果

f:id:jude2016:20180721150020p:plain

先月の月初

・E.X.コード

// 実コード
Date currentDate = Date.Today();
Date lastMon = currentDate.addMonths(-1);
Date lastMonFirstDay = lastMon.toStartOfMonth();

// デバッグ確認
System.debug('===========================');
System.debug('■■■ currentDate-->' + currentDate);
System.debug('■■■ lastMonFirstDay-->' + lastMonFirstDay);
System.debug('===========================');

・出力結果

f:id:jude2016:20180721150342p:plain

翌月の月初

・E.X.コード

// 実コード
Date currentDate = Date.Today();
Date nextMon = currentDate.addMonths(1);
Date nextMonFirstDay = nextMon.toStartOfMonth();

// デバッグ確認
System.debug('===========================');
System.debug('■■■ currentDate-->' + currentDate);
System.debug('■■■ nextMonFirstDay-->' + nextMonFirstDay);
System.debug('===========================');

・出力結果
f:id:jude2016:20180721150625p:plain

月末

現在日付の月末

現在の日付:2018年07月21日とする

月の最終日を確認する最も簡単な方法は、

翌月の最初の日を調べ、

そこから 1 日差し引くことです。

・E.X.コード

// 実コード
Date currentDate = Date.Today();
Date nextMon = currentDate.addMonths(1);
Date nextMonFirstDay = nextMon.toStartOfMonth();
Date currentLastDay = nextMonFirstDay.addDays(-1);
// デバッグ確認
System.debug('===========================');
System.debug('■■■ currentDate-->' + currentDate);
System.debug('■■■ currentLastDay-->' + currentLastDay);
System.debug('===========================');

・出力結果
f:id:jude2016:20180721151423p:plain

先月の月末

・E.X.コード

// 実コード
Date currentDate = Date.Today();
Date currenMonFirstDay = currentDate.toStartOfMonth();
Date currentLastMonLastDay = currenMonFirstDay.addDays(-1);
// デバッグ確認
System.debug('===========================');
System.debug('■■■ currentDate-->' + currentDate);
System.debug('■■■ currentLastMonLastDay-->' + currentLastMonLastDay);
System.debug('===========================');

・出力結果
f:id:jude2016:20180721151640p:plain

翌月の月末

・E.X.コード

// 実コード
Date currentDate = Date.Today();
Date next2Mon = currentDate.addMonths(2);
Date next2MonFirstDay = next2Mon.toStartOfMonth();
Date nextMonLastDay = next2MonFirstDay.addDays(-1);
// デバッグ確認
System.debug('===========================');
System.debug('■■■ currentDate-->' + currentDate);
System.debug('■■■ nextMonLastDay-->' + nextMonLastDay);
System.debug('===========================');

・出力結果
f:id:jude2016:20180721151840p:plain

いかがでしょうか
大したことではないが、以上です。

posted by Jude at 00:00 | Comment(0) | 未分類

2018年06月07日

VFで帳票開発

SalesforceのVFで帳票系を開発すると

大変ではないかと思っている。

現在、帳票系もうほぼVFで開発しない方針に

変更しましたがVFで帳票系を開発していた

時のノウハウを共有します。続きを読む...

posted by Jude at 07:00 | Comment(0) | 未分類

2018年06月06日

SOQLとSOSLについて

Salesforceの開発で最も使われるクエリが
SOQLでしょう

E.X.

Account[] accList = [SELECT Id, Name FROM Account];

しかし、もう一つクエリがあります。

それがなにでしょうか

続きを読む...
posted by Jude at 08:00 | Comment(0) | 未分類
いつもお世話になります。ブログ引越しになったので最新のSFDC情報はこちらへ SFU_CRT_BDG_Pltfrm_App_Blder_RGB.jpg SFU_CRT_BDG_Admin_RGB.jpg
プロフィール
Judeさんの画像
Jude
こんにちは、自由が欲しいJudeっす。最近ネットビジネスを始まった。結婚はしていないが、会社の残業が大嫌い、何しても周りの人に迷惑をかけないように、社会に負の影響を与えないように常に意識してる。残業のない国になるため、できるところでコツコツ貢献しておる。、国民のみんなきっともっと幸せと信じている。
プロフィール
<< 2019年01月 >>
    1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31    
検索
月別アーカイブ
日別アーカイブ
最新コメント
ファン
×

この広告は30日以上新しい記事の更新がないブログに表示されております。