Records as Recently Viewed - Query
Mark a record as recently viewed using Query resource in Salesforce using SQL Server
- See SQLHTTP easy setup for Salesforce
- See API Call documentation for parameter values and other information
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
DECLARE @Response nvarchar(MAX) DECLARE @StatusCode int DECLARE @StatusDescription nvarchar(MAX) DECLARE @Profile nvarchar(100) SET @Profile = 'My Salesforce' --Salesforce Bearer Token is valid for only a few hours EXEC usp_Salesforce_Auth_Refresh @Profile EXEC usp_SalesForce_Query @Profile = @Profile, @APIVersion = 'v40.0', @SelectStatement = 'SELECT Name FROM Account LIMIT 1 FOR VIEW', @Response = @Response OUTPUT, @StatusCode = @StatusCode OUTPUT, @StatusDescription = @StatusDescription OUTPUT IF @StatusCode >= 400 EXEC SQLHTTP.net.RaiseHttpError @StatusCode, @StatusDescription, @Response ELSE BEGIN DECLARE @X xml SET @X = SQLHTTP.net.Json_To_Xml(@Response, '0') --The XPath syntax below was easily generated by executing the following commands: --EXEC SQLHTTP.net.XQueryHelper @X --and then executing: --EXEC SQLHTTP.net.XQueryHelper @X, 'JsonObject' SELECT T.C.value(N'@done', N'nvarchar(MAX)') AS [done] ,T.C.value(N'@totalSize', N'nvarchar(MAX)') AS [totalSize] ,T.C.value(N'records[1]/JsonObject[1]/@Name', N'nvarchar(MAX)') AS [Name] ,T.C.value(N'records[1]/JsonObject[1]/attributes[1]/@type', N'nvarchar(MAX)') AS [type] ,T.C.value(N'records[1]/JsonObject[1]/attributes[1]/@url', N'nvarchar(MAX)') AS [url] FROM @X.nodes(N'/JsonObject') T(C) END |
1 2 3 4 5 6 |
done totalSize name type url ------- ---------- -------------------------------- --------- -------------------------------- true 1 Express Logistics and Transport Account /services/data/v40.0/sobjects... |
- Account Information – Fetch
- Deleted Records – Fetch
- Domain – Search
- Email – Fetch
- Email Count – Fetch
- Email Verification – Fetch
- Lead – Create
- Lead – Delete
- Lead – Update
- Leads – Fetch
- Leads List – Create
- Leads List – Delete
- Leads List – Fetch
- Leads List – Update
- Leads Lists – Fetch
- Multiple Reocords – Create
- Multiple Requests – Create
- Nested Records – Create
- Recently Viewed Records – Fetch
- Records as Recently Viewed – Query
- Relevant Items – Fetch
- Search Scope and Order – Fetch
- String – SOSL Search
- Updated Records – Fetch
IMPORTANT DISCLAIMER
CODE/SQL ON THESE PAGES ARE PROVIDED AS-IS AND ARE AVAILABLE FOR ILLUSTRATIVE PURPOSES ONLY.
USERS ARE REQUIRED TO ABIDE BY THE TERMS AND CONDITIONS FOR USING REFERENCED THIRD PARTY WEBSITES AND/OR APIs FROM THEIR RESPECTIVE WEBSITES. WE DO NOT CONDONE ANY VIOLATION OF THIRD PARTY WEBSITES AND/OR APIs TERMS AND CONDITIONS USING OUR SOFTWARE.
USERS SHALL BE SOLELY RESPONSIBLE AND BE SOLELY LIABLE FOR VIOLATION OF ANY RULES SPECIFIED BY THIRD PARTIES FOR USING THEIR WEBSITES AND/OR APIs, OR INFRINGEMENT OF RIGHTS OF SUCH THIRD PARTIES.