本篇參考: https://trailhead.salesforce.com/en/content/learn/modules/lightning_connect https://help.salesforce.com/articleView?id ...
在工作中,我們更多操作的是一個表的對象,所以我們對SOQL的使用很多。但是有時候,我們需要對幾個表進行查詢操作,類似salesforce的全局搜索功能,這時,使用SOQL沒法滿足功能了,我們就需要使用SOSL.其實不只是多個表檢索可以使用SOSL,如果針對某個字段進行高級的檢索也可以使用SOSL。 背景:Account表中的Name字段,存儲了以下的數據 .上海電信 .上海 電信 .上海 電信 . ...
2017-07-25 19:07 1 2450 推薦指數:
本篇參考: https://trailhead.salesforce.com/en/content/learn/modules/lightning_connect https://help.salesforce.com/articleView?id ...
隨着salesforce對lightning的推進,越來越多的項目基於lightning開發,導致很多小伙伴可能都並不了解classic或者認為不需要用到classic直接就開始了lightning的開發。其實有精力了解classic的使用還是很有必要的,因為lightning還在不斷的優化中 ...
本篇參考:https://developer.salesforce.com/blogs/2018/07/which-streaming-event-do-i-use.html https://trailhead.salesforce.com/content/learn/modules ...
本文參考官方的formula介紹PDF:https://resources.docs.salesforce.com/200/latest/en-us/sfdc/pdf/salesforce_useful_formula_fields.pdf formula函數A-H:https ...
我們在開發lightning的時候,常常會在controller.js中寫 component.get('v.label'), component.set('v.label','xxValue'); ...
對於審批流中,通過apex代碼進行審批操作一般都需要獲取當前記錄對應的ProcessInstanceWorkitem或者ProcessInstanceStep然后執行Approval.process操 ...
本篇參考: https://developer.salesforce.com/docs/atlas.en-us.224.0.bigobjects.meta/bigobjects/async_query_overview.htm https://trailhead.salesforce ...
上一篇介紹了Aura Framework中 Component類的部分方法,本篇將要介紹Event常用的方法。 1. setParam (String key , Object value):設置事件的param,此項設置不會修改已經被觸發的事件。我們在創建事件的時候可以同時聲明 ...