新規記事の投稿を行うことで、非表示にすることが可能です。
2018年06月15日
Sales Cloud(商談の管理15%)商談ー見積テスト編
自分もSFDC大学に通っているので、
やっていた問題を共有します。
欲しけりゃくれてやる・・・。
探せ!
この世の全てをそこに置いてきた〜笑
続きを読む...-
no image
-
no image
2018年06月14日
Sales Cloud(商談の管理15%)商談ー見積編
資格に関連する商談の管理知識を
共有したいと思います。
Salesforceの商談(opportunity)を
使いこなせるまで、なかなか時間が
必要かと考えられます。
ですが、それはしょうがないじゃないですか
簡単に理解できるなら、そんなもんはどうでしょうかね続きを読む...
2018年06月13日
セールスクラウドコンサルタントに簿記知識必要?
sales cloud consultant資格を目指し
だんだん、
BS:バランスシート(Balance Sheet)
PL:収益損益表(Profit Loss)
に目をつけるでしょう
私もその一人です。
では、エンジンニアとして
ずっと技術ばかりでした。
数値などを見ると頭が痛くなる、
集中力もきれませんか
そこで、今回、BSとPLを簡単に理解してもらう
ため、記事を書きました。
続きを読む...2018年06月12日
SFDC Sales Cloud コンサルタント 資格
2018年06月11日
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++; }
・出力結果
親から子へのアクセス
・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); } }
・出力結果
Select Id, Name, (Select Id, Name FROM Contacts) FROM account;
の
Select Id, Name FROM Contacts
部分がサブクエリと呼びます。
Contactsが子リレーション名である
オブジェクトの設定画面から確認できます。
取引先(Account)と取引先責任者(Contact)の関係は下記の
画像で確認できます。
2018年06月09日
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('===========================');
・出力結果
先月の月初
・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('===========================');
・出力結果
翌月の月初
・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('===========================');
・出力結果
月末
現在日付の月末
現在の日付: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('===========================');
・出力結果
先月の月末
・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('===========================');
・出力結果
翌月の月末
・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('===========================');
・出力結果
いかがでしょうか
大したことではないが、以上です。
2018年06月07日
2018年06月06日
SOQLとSOSLについて
Salesforceの開発で最も使われるクエリが
SOQLでしょう
E.X.
Account[] accList = [SELECT Id, Name FROM Account];
しかし、もう一つクエリがあります。
それがなにでしょうか
続きを読む...