Newer Version Available
Sample Integration Link Formulas
| Available in: both Salesforce Classic (not available in all orgs) and Lightning Experience |
| Available in: All Editions |
For details about using the functions included in these samples, see Formula Operators and Functions by Context.
Application API Link
This formula creates a link to an application outside Salesforce, passing the parameters so that it can connect to Salesforce via the SOAP API and create the necessary event.
1HYPERLINK ("https://www.myintegration.com?sId=" & GETSESSIONID() & "?&rowID=" & Name & "action=CreateTask","Create a Meeting Request")Shipment Tracking Integration
This formula creates a link to FedEx, UPS, or DHL shipment tracking websites, depending on the value of a Shipping Method custom picklist field. Note that the parameters shown in this example for FedEx, UPS, and DHL websites are illustrative and do not represent the correct parameters for all situations.
1CASE(Shipping_Method__c,
2"Fedex",
3HYPERLINK("http://www.fedex.com/Tracking?ascend_header=1&clienttype
4=dotcom&cntry_code=us&language=english&tracknumbers= "& tracking_id__c,"Track"),
5"UPS",
6HYPERLINK("http://wwwapps.ups.com/WebTracking/processInputRequest?HTMLVersion
7=5.0&sort_by=status&loc=en_US&InquiryNumber1= "& tracking_id__c & "&track.x=32&track.y=7", "Track") ,
8"DHL",
9HYPERLINK("http://track.dhl-usa.com/TrackByNbr.asp?ShipmentNumber=" & tracking_id__c,"Track"), "")Skype™ Auto Dialer Integration
This formula creates a linkable phone number field that automatically dials the phone number via the Skype VOIP phone application. It requires installation of the Skype application (a third-party product not provided by Salesforce) on your desktop.
1HYPERLINK("callto://+" & Country_Code__c & Phone_Unformatted__c, Phone)