21
06/18
salesforce report get url parameters
Passing report filters as query params to Salesforce reports ! Today, I stumbled across an interesting problem, where one needs to “Run a report by passing parameters through link or button click” Their is no direct way visible in report configuration screen for the same. So I scanned salesforce developer boards for the same, and found this solution that worked perfectly for me, thanks “mikef” for sharing this solution(can’t find your twitter profile ). Using the same ...
21
06/18
salesforce display trigger error
trigger test on Account(before insert){ trigger.new[0].name.addError('Nice try'); }