Posts

Showing posts with the label dynamics-crm-365

How to return more than 50 results from Dynamics 365 using the Web API

Image
Clash Royale CLAN TAG #URR8PPP How to return more than 50 results from Dynamics 365 using the Web API Continuing on with my Dynamics 365 from Delphi project, I am now at a point where I need to be retrieving more data from CRM than the 50 entities I can get by default, and that by setting the maxpagesize preference, I should be able to get more. This is what my existing Delphi code looks like to retrieve the data from Dynamics: RESTClient.BaseURL := 'https://mytest.api.crm6.dynamics.com'; RESTRequest.Resource := 'XRMServices/2011/OrganizationData.svc/AccountSet?$select=Name&'; RESTRequest.Accept := 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8'; RESTRequest.Execute; This returns 50 results, and follows up with the paging tag (which we will ignore for now): <link rel="next" href="https://mytest.api.crm6.dynamics.com/XRMServices/2011/OrganizationData.svc/AccountSet?$select=Name&amp;$skiptok...

Why my ribbon button not shows up in my form CRM 365?

Image
Clash Royale CLAN TAG #URR8PPP Why my ribbon button not shows up in my form CRM 365? I add ribbon button in my entities form XrmToolBox via Ribbon Workbench plugins, I already publish my change to that form but when I refresh my page there is still no button that I already created. My another question is how to add action to that button via plugin? I found some answer on the internet but still not 100% understand, first we create Action in our CRM so we can add it in plugin registration but what I'm still don't understand how to tell that action belongs to my ribbon button. Can anyone help me? 2 Answers 2 If the new custom ribbon button has no command associated it will not show, other reason could be cache, try to clear it and check again. You can execute Custom Action like any Workflow from Ribbon/command bar button. For that you can use Smart button in Ribbon workbench. Read more The plu...