本篇參考: https://developer.salesforce.com/docs/atlas.en-us.216.0.apexcode.meta/apexcode/apex_classes_keywords_sharing.htm https ...
本篇參考:https: developer.salesforce.com blogs which streaming event do i use.html https: trailhead.salesforce.com content learn modules platform events basics https: developer.salesforce.com docs atlas.e ...
2020-05-02 23:45 0 1008 推薦指數:
本篇參考: https://developer.salesforce.com/docs/atlas.en-us.216.0.apexcode.meta/apexcode/apex_classes_keywords_sharing.htm https ...
上一篇介紹了Aura Framework中 Component類的部分方法,本篇將要介紹Event常用的方法。 1. setParam (String key , Object value):設置事件的param,此項設置不會修改已經被觸發的事件。我們在創建事件的時候可以同時聲明 ...
我們在Sales Cloud中經常會創建顧客,如果針對TO C業務,會啟用個人顧客,比如針對車企行業,有一些場景是需要賣給個人的,而不只是企業采購。當通過打電話或者其他的場景有潛在客戶並且轉換成客戶以后,我們會為其創建業務機會(Opportunity),並且創建相關的 Event / Task ...
上一篇介紹的內容為Formula,其中的Date/time部分未指出,此篇主要介紹Date/time部分以及Validation rules。 本篇參考PDF: Date/time:https://resources.docs.salesforce.com/200/latest/en-us ...
我們在開發lightning的時候,常常會在controller.js中寫 component.get('v.label'), component.set('v.label','xxValue'); ...
對於審批流中,通過apex代碼進行審批操作一般都需要獲取當前記錄對應的ProcessInstanceWorkitem或者ProcessInstanceStep然后執行Approval.process操 ...
我們在開發中,很難會遇見不提交表單的情況。常用的apex:commandButton,apex:commandLink,apex:actionFunction,apex:actionSupport。他 ...
在工作中,我們更多操作的是一個表的對象,所以我們對SOQL的使用很多。但是有時候,我們需要對幾個表進行查詢操作,類似salesforce的全局搜索功能,這時,使用SOQL沒法滿足功能了,我們就需要使用SOSL.其實不只是多個表檢索可以使用SOSL,如果針對某個字段進行高級的檢索也可以使用SOSL ...