#side7apexUnmoderated tagAll postsTrending CommunitiesSteemitCryptoAcademyNewcomers' Communityআমার বাংলা ব্লগKorea • 한국 • KR • KOSTEEM CN/中文Steem AllianceAVLE 일상WORLD OF XPILARBeauty of CreativitySCT.암호화폐.CryptoSteem POD TeamItalyExplore Communities...#side7apexTrendingHotNewPayoutsMutedpacopaco2643 (34)in #side7apex • 4 years agoApex テストクラスコミュニティユーザ作成Id p = [select id from profile where name='Partner Community User'].id;pacopaco2643 (34)in #side7apex • 4 years agoApex バイヤーアカウント作成isBuyer is not writable ⇒ 取引先にisBuyerあるけど書き込み不可(数式でもないくせして。。 関連テーブルがある ⇒ BuyerAccount buyerAccount = new BuyerAccount();pacopaco2643 (34)in #side7apex • 4 years agoapex スリープたまに使うけど使いたい時わすれる。。 Long startTime = DateTime.now().getTime();pacopaco2643 (34)in #side7apex • 4 years agoApex オブジェクトのAPI名一覧取得public String getAllFieldNamess(String sobjName){pacopaco2643 (34)in #side7apex • 4 years agoSalesforce オブジェクトが乗っている承認プロセス定義の確認オブジェクトが乗っている承認プロセス定義の確認 //TargetObjectId = '★調べたいオブジェクトのID'pacopaco2643 (34)in #side7apex • 4 years agoApexバッチの1分毎実行リアルタイム性が必要な時は非同期でやるが 諸事情でバッチでやる必要がある場合 分の後半にジョブ登録すると実行されない場合があるので その対応が必要 ⇒ ジョブ登録~SalesforceのCron登録処理~ジョブ実行 ⇒…pacopaco2643 (34)in #side7apex • 4 years agoApex オブジェクト一覧取得// 全オブジェクトを取得pacopaco2643 (34)in #side7apex • 4 years agoApex 全角半角混在の文字数確認Salesforceは全角3バイトだけど 連携先の都合上2バイト計算とかある (仕様決めの時点でシンプルになるように調整すべきだった) ⇒ /**pacopaco2643 (34)in #side7apex • 4 years agoApex ビュー一覧取得ApexPages.StandardSetController ssc = pacopaco2643 (34)in #side7apex • 4 years agoApex Json生成モデルクラス作るまでもない時に あと、WebサービスクラスでカスタムオブジェクトでないけどJsonで返したい場合だと 文字列でJson作ると怒られたような気がする。 (画面側かApex側かは忘れた) JSONGenerator…pacopaco2643 (34)in #side7apex • 4 years agoApex リレーション一覧取得for(ChildRelationship cr : SObjectType.JinjiFrow__c.getChildRelationships()){pacopaco2643 (34)in #side7apex • 4 years agoapex 指定の長さの文字列生成テストとかで文字長調整したいとき test__c = ('a').repeat(255); ⇒ 255文字のaaaaaaaa・・・が生成されるpacopaco2643 (34)in #side7apex • 5 years agoApex レコードタイプ選択画面後の画面遷移制御PageReference pageRef = new PageReference('/setup/ui/recordtypeselect.jsp');pacopaco2643 (34)in #side7apex • 5 years agoロール階層取得ユーザより下の階層のロールに所属するユーザの取得 public with sharing class TestSFDC {pacopaco2643 (34)in #side7apex • 5 years ago時間型選択リストから保存trigger MeetingTrigger on Meeting__c (before insert, before update) {pacopaco2643 (34)in #side7apex • 5 years agoapex 外部キーを指定してアップサートアップサート対象に責任者の参照があったとして Target__c target = new Target__c();//アップサートするオブジェクトpacopaco2643 (34)in #side7apex • 5 years agoApex テストクラス メールテンプレート作成public EmailTemplate createEmailTemplate(Boolean insFlg) {pacopaco2643 (34)in #side7apex • 5 years ago動的SOQLでもバインド変数定期的に忘れるけど使える String soql = 'Select Id From Case Where Priority In :priorityList';pacopaco2643 (34)in #side7apex • 5 years ago組織のメールアドレス取得SingleEmailMessage#setOrgWideEmailAddressId で送信元に組織のアドレス指定できる。 ■ID取得 private ID getOrgWideEmailAddress(String displayName) {pacopaco2643 (34)in #side7apex • 5 years agoApex リレーション一覧取得for(ChildRelationship cr : SObjectType.Account.getChildRelationships()){