2018-02-28から1日間の記事一覧

Salesforce apex:commandButtonのapex:param

Salesforce apex:commandButtonのapex:param 例えば、 Page <apex:commandButton value="commandButtonから実行" action="{!doClick}" rerender="formId"> <apex:param name="parameter" value="commandButtonから実行"/> </apex:commandButton> Controller public void doClick() { String parameter = System.currentPageReference().g…

Salesforce データローダの日付時間設定

Salesforce データローダの日付時間設定 例えば、レコード作成日が2018-02-28含む過去日を取得する場合 Select Id, CreatedDate FROM XXX__c WHERE CreatedDate <= 2018-02-28T00:00:00Z 参考URL ヘルプ | トレーニング | Salesforce