2018-10-01から1ヶ月間の記事一覧

【Salesforce】ログイン場所を日本する方法

【Salesforce】ログイン場所を日本する方法 Production https://login.salesforce.com/?locale=jp Sandbox https://test.salesforce.com/?locale=jp

【IT】IE11からIE8へのダウングレード

IT

【IT】IE11からIE8へのダウングレード コントロールパネルよりプログラムと機能→インストールされた更新プログラムを表示→Internet Explorer 11を選択→アンインストール 上記の手順でIE11を抜くことはできないでしょうか。Windows7のデフォルトのブラウザはI…

【Salesforce】項目履歴管理

【Salesforce】項目履歴管理 カスタムオブジェクトおよび次の標準オブジェクトの項目履歴を追跡できます。 取引先 記事 納入商品 キャンペーン ケース 取引先責任者 契約 契約品目名 エンタイトルメント リード 商談 注文 注文商品 商品 サービス契約 ソリュ…

【IT】障害報告書

IT

【IT】障害報告書 参考URL https://blog.reactio.jp/entry/2015/06/18/230633

【phpMyAdmin】更新日が更新されない

【phpMyAdmin】更新日が更新されない DBまたはSQLのUpdateコマンドでレコード値を変更しても、更新日が更新されないのは、属性が設定されていないか、ON UPDATE CURRENT_TIMESTAMPになっていないからです。 対策1: 属性を「ON UPDATE CURRENT_TIMESTAMP」…

【Excel】セル選択ショートカットキー

【Excel】セル選択ショートカットキー ショートカットキー 選択範囲を列全体に広げる。 Ctrl+Space 参考URL https://office-hack.com/excel/shortcutkey-selection/

【Excel】新しいフォントは、これ以上設定できません。開いている他のドキュメントを閉じて、再度実行してください。

【Excel】新しいフォントは、これ以上設定できません。開いている他のドキュメントを閉じて、再度実行してください。 対応1: 上記のメッセージが表示されたら、「OK」ボタンを押し続けて表示させないようにする。 対応2: タスクマネージャーを開いて、プ…

【phpMyAdmin】Update

【phpMyAdmin】Update 例: 1.Update前 テーブル名 : test_tbl id name birth 1 a 2000-01-01 2 b 2000-01-02 3 c 2000-01-03 4 d 2000-01-04 2.Updateデータ方法1 個別でUpdate update `test_tbl` SET `birth` = '2000-01-11' WHERE `id` = 1 update …

【phpMyAdmin】SQL文からExport

【phpMyAdmin】SQL文からExport 1.メニュー>エクスポート>SQL 2.「実行する」ボタン押下 3.「保存」ボタン押下 4.保存されたSQLファイルを開き、レコードのみ別のEditorへ移して、編集して、TEXTファイルに保存する。 5.Excel>データ>テキスト…

【Excel】重複しない値抽出

【Excel】重複しない値抽出 1.重複しない値抽出したい列を選択する。 2.データ>フィルター>詳細設定> 「重複するレコードは無視する」チェックする。 3.「OK」ボタン押下する。 参考URL https://support.office.com/ja-jp/article/%E9%87%8D%E8%A4%…

【phpMyAdmin】SQL文

【phpMyAdmin】SQL文 例: 条件なし SELECT * FROM `table1` WHERE 1 例: 条件付き SELECT * FROM `table1` WHERE `itemid1` = 'abc1234' SELECT * FROM `table1` WHERE `itemid1` like 'abc%' SELECT * FROM `table1` WHERE `itemid1` like 'abc%' and `it…

【phpMyAdmin】Export

【phpMyAdmin】Export 1.エクスポート : 「Excel 2007 XLSX Workbook」選択する。 2.オプション : 「1行目にフォール度名を追加する」チェックする。 3.圧縮「なし」 4.「non」エンコーディングへ変換する。 5.「実行する」ボタン押下する。

【Salesforce】Map

【Salesforce】Map 例: Map<String,Map<String,String>> testMpas = new Map<String,Map<String,String>>{'Red' => new Map<String, String>{'Red0'=> 'FF0000','Red1' => 'FF0001'},'Blue' => new Map<String, String>{'Blue0'=> '0000A0','Blue1' => '0000A1'} }; for(String obj: testMpas.keySet()){ Set<String> keys = t…</string></string,></string,></string,map<string,string></string,map<string,string>

【Salesforce】Map

【Salesforce】Map 例: Map<String, String> colorCodes = new Map<String, String>(); colorCodes.put('Red', 'FF0000');colorCodes.put('Blue', '0000A0'); Set <String> colorSet = new Set<String>();colorSet = colorCodes.keySet();system.debug('colorSet:'+colorSet); for(String obj: colorCodes.ke</string></string></string,></string,>…

【PowerPoint】テンプレート(テーマ)編集

【PowerPoint】テンプレート(テーマ)編集 1.編集したスライドを選択 2.メニュ>表示>スライドマスター 3.編集する 4.閉じる 参考URL スライドマスターでテンプレート(テーマ)を編集 [パワーポイント(PowerPoint)の使い方] All About

【Salesforce】Developer Editionアカウントの作成

【Salesforce】Developer Editionアカウントの作成 1.ブラウザを開き、以下のURLにアクセスします http://developer.salesforce.com/signup 2.サインアップフォームを入力します 参考URL http://salesforcedevelopersjapan.github.io/lightning-connect-…

【Salesforce】開発コンソールエラー:TotalRequests Limit exceeded

【Salesforce】開発コンソールエラー:TotalRequests Limit exceeded 設定>管理>組織プロファイル>組織情報 API 要求数 (この 24 時間以内) 15,042 (15,000 最大) 原因: API要求数(24時間以内)制限値を超えたため。 参考URL https://developer.salesfo…

【Salesforce】デバッグログを一括削除

【Salesforce】デバッグログを一括削除 設定>開発者コンソール 1.Query Editor 例: select id from ApexLog 2.削除対象ID選択して、Delete Rowボタン押下 参考URL http://www.subnetwork.jp/blog/?p=1110

【Salesforce】EmailにSalesforce Base URL取得

【Salesforce】EmailにSalesforce Base URL取得 例: system.debug(System.URL.getSalesforceBaseUrl().ToExternalForm()); 結果:https://cs23.salesforce.com 参考URL https://developer.salesforce.com/forums/?id=9060G000000UTtVQAW

【Salesforce】List index out of bounds: 0

【Salesforce】List index out of bounds: 0 例: List<custom obj__c> lrecords=[ select Id,name, from custom obj__c ]; lrecords[0].Fileld1__c = 2; lrecords[0].Fileld2__c =3; update lrecords; 上記を実行してlrecordsのリストサイズが0件の場合、lrecords[0]を呼び</custom>…

【Salesforce】Pardotスコアリング

【Salesforce】Pardotスコアリング 参考URL help.salesforce.com https://tobem.jp/pardot_blog/pardot_1/201711092226.html

【Salesforce】beforeトリガとafterトリガ

【Salesforce】beforeトリガとafterトリガ beforeトリガ レコードがDBに保存される前に起動 afterトリガ レコードがDBに保存された後に起動 実行手順 beforeトリガ → 必須、入力規則のチェック → afterトリガ 使い分け beforeトリガ : 入力規則のチェックよ…

【Salesforce】Ending position out of bounds: 3

【Salesforce】Ending position out of bounds: 3 例: String areaCodeA = phone.substring(0,3); エラー: Ending position out of bounds: 3 対策: if(phone.Length()>=3){ String areaCodeA = phone.substring(0,3); } 参考URL https://developer.sales…

【Salesforce】SOAP API テストツール Postman

【Salesforce】SOAP API テストツール Postman 参考URL http://blog.getpostman.com/2017/11/18/postman-makes-soap-requests-too/

【Salesforce】Exception

【Salesforce】Exception 以下のExceptionの原因究明が難しい。 CalloutException 外部システムへのコールアウトの失敗など、Web サービス処理に関する問題を示す例外。 参考URL https://developer.salesforce.com/docs/atlas.ja-jp.apexcode.meta/apexcode/…

【Salesforce】String.valueOf

【Salesforce】String.valueOf 例: Map<String,String> leadOwnerMap = new Map<String, String>();for(Lead obj: [Select id, OwnerId From Lead]){ leadOwnerMap.put(obj.id, obj.OwnerId);}System.debug('leadOwnerMap:'+leadOwnerMap); Map<String,String> contactOwnerMap = new Map<String, String>();for(Contact ob</string,></string,string></string,></string,string>…

【Salesforce】substring

【Salesforce】substring substring(startIndex, endIndex) Returns a new String that begins with the character at the specified zero-based startIndex and extends to the character at endIndex - 1. 例: 'hamburger'.substring(4, 8); // Returns "…

【Salesforce】SOQL Where文

【Salesforce】SOQL Where文 例: String nameString = 'a'; Account A = new Account(Name='a');insert A; List<Account> accList = new List<Account>();accList = [SELECT Id FROM Account WHERE Name = :nameString];System.debug('accList:'+accList); List<Account> accList2 = ne</account></account></account>…

【Salesforce】List, Map, Set

【Salesforce】List, Map, Set List 重複した値のセット(add)が可能です。 Map キーによって値を管理しているため、キーの重複は不可です。但し、値の重複は可能です。 ※同じキーがセット(put)された場合は、上書きされます。 Set 重複した値のセット(add)は…