Posts

Showing posts with the label Salesforce

Salesforce Fact #860 | Remove noreply@salesforce.com from email sender address

Sometimes in the emails sent from Salesforce, noreply@salesforce.com is added automatically. This can be controlled from an email deliverability setting. Setup -> Email -> Deliverability -> Email Security Compliance section -> Uncheck the 'Enable Sender ID compliance' checkbox. Reference:  https://help.salesforce.com/s/articleView?id=000383125&type=1

Salesforce Fact #749 | Empty key Id in Salesforce

Image
There is an empty key Id in Salesforce and the id is ' 000000000000000AAA'. This is equivalent to NULL or no-reference to parent record. This can be used in place of NULL while updating records via data loader without enabling the 'insert null values' setting. Reference:  http://www.fishofprey.com/2011/06/salesforce-empty-key-id.html Attached is one screenshot.

Salesforce Fact #636 | Passing filter value to Power BI field

If we are rendering some Power BI report in Salesforce record detail page and if the Power BI field name contains space then we need to tweak a bit while passing the filter value. For example, if we have a table named 'financials' and a field named 'Discount Band' in Power BI and we are filtering the data based on Name field on account, we need to use the below text formula as the filter: "financials/Discount_x0020_Band eq '"&Name&"'"