Skip to main content

Posts

Showing posts from April, 2019

How To: Dynamics CRM - Get View GUID based on View Name

This is a quick short article; I was searching for the same and couldn't find a straight forward way and few have suggested using JavaScript. Below is the simple way: 1. Go To Settings > Customizations > Developer Resources 2. Copy the 'Instance Web API - Service Root Url' 3. Append '/savedqueries' to the above URL and open that in browser. 4. Search for your View name in the API result set for above url. 5. Check the 'savedqueryid' for the object in which your view name is present. Example Web API Url: https:// instancename .api. crm8 .dynamics.com/api/data/v9.1/ savedqueries Output Screen: Highlighted in above image is View Name and its corresponding View GUID. Hope it helps!