Dynamics 365 – Post-Operation Plugin

and the database transaction has been completed. This stage is used for what to do “after”, e.g. create an activity utilizing the new record GUID. Create a new class library…

Dynamics 365 Web API Retrieve, Select, Filter, Order By and Top

…can do this with the query. Again, we divide each operator with the & symbol. This produces: https://crm374549.api.crm.dynamics.com/api/data/v9.1/accounts?$select=name,telephone1,revenue,industrycode,_transactioncurrencyid_value&$top=10&$orderby=name%20asc&$filter=revenue%20gt%2010000000 TIP: A list of operators additional can be found at https://docs.microsoft.com/en-us/powerapps/developer/common-data-service/webapi/query-data-web-api  …

Looking at the Dynamics 365 WebApi through Browser URL

…To select top, we can use: https://yourorg.crm.dynamics.com/api/data/v9.0/contacts?$select=firstname,lastname,address1_city,birthdate&$top=10 Filter To filter, we can use: https://yourorg.crm.dynamics.com/api/data/v9.0/contacts?$select=firstname,lastname,address1_city,birthdate&$top=10&$filter=firstname eq ‘Jim’ This then translates to: https://yourorg.crm.dynamics.com/api/data/v9.0/contacts?$select=firstname,lastname,address1_city,birthdate&$top=10&$filter=firstname%20eq%20%27Jim%27 To filter on birthdate, use (note no quotes): https://yourorg.crm.dynamics.com/api/data/v9.0/contacts?$select=fullname,birthdate&$top=100&$filter=birthdate…

SSRS Subreports

…create the actual subreport. Open a new Report Builder and create a new report. Now add parameters to the report. Add SOP Type and SOP Number: Create a new table…

How to Use the Dynamics 365 Xrm.WebApi

In Dynamics 365 9.x, there are new Xrm.WebApi JavaScript methods available to call the Dynamics 365 Web APIs. These new methods are very useful in that the plumbing for making…