Thinking of Learning Power BI? Check Out My Top Learning Resources

…and Power BI. You can access it at https://docs.microsoft.com/en-us/learn/. So far there are a couple of Power BI courses, including Get Started with Power BI: https://docs.microsoft.com/en-us/learn/modules/get-started-with-power-bi/ 3. Microsoft Guided Learning…

URL Changes for Unified Client Interface Apps vs Web Client Apps

…Unified Interface https://crm971021.crm.dynamics.com/main.aspx?appid=e7a248bf-f35b-ea11-a811-000d3a5698d2&pagetype=entitylist&etn=account&viewid=61273827-328e-e011-95ae-00155d9cfa02&viewType=1039 Web Client http://crm971021.crm.dynamics.com/main.aspx?etn=account&pagetype=entitylist&viewid={61273827-328E-E011-95AE-00155D9CFA02}&viewtype=1039&navbar=off&cmdbar=false Existing Entity Record Unified Interface https://crm971021.crm.dynamics.com/main.aspx?appid=e7a248bf-f35b-ea11-a811-000d3a5698d2&pagetype=entityrecord&etn=account&id=64993617-c85d-ea11-a811-000d3a579ca1 And specific form: https://crm971021.crm.dynamics.com/main.aspx?appid=e7a248bf-f35b-ea11-a811-000d3a5698d2&forceUCI=1&pagetype=entityrecord&etn=account&id=64993617-c85d-ea11-a811-000d3a579ca1&formid=cb430327-bcc1-416d-959d-db7592e685af Web Client Note the encoded URL: %7B is { %7D is } %3d is…

Dynamics 365 SOAP Logger

…HTTP REQUEST ————————————————– POST https://xxxxxxx.api.crm.dynamics.com/XRMServices/2011/Organization.svc/web Content-Type: text/xml; charset=utf-8 SOAPAction: http://schemas.microsoft.com/xrm/2011/Contracts/Services/IOrganizationService/RetrieveMultiple <s:Envelope xmlns:s=”http://schemas.xmlsoap.org/soap/envelope/”> <s:Body> <RetrieveMultiple xmlns=”http://schemas.microsoft.com/xrm/2011/Contracts/Services” xmlns:i=”http://www.w3.org/2001/XMLSchema-instance”> <query i:type=”a:QueryExpression” xmlns:a=”http://schemas.microsoft.com/xrm/2011/Contracts”> <a:ColumnSet> <a:AllColumns>false</a:AllColumns> <a:Columns xmlns:b=”http://schemas.microsoft.com/2003/10/Serialization/Arrays” /> </a:ColumnSet> <a:Criteria> <a:Conditions> <a:ConditionExpression> <a:AttributeName>name</a:AttributeName> <a:Operator>Equal</a:Operator>…

How to Get a Postman Bearer Token for Azure Resources

…permission to https://graph.microsoft.com: We can add other permissions by clicking on Add a permission: Some other resources include: https://auth.msft.communication.azure.com (Azure Communication Services) https://aadrm.com/ (Azure Rights Management Services) https://aadrm.com/ (Azure Service…

Videos

…to Create, Trigger, and Run Power Automate Flows from Dynamics 365 and Power Apps: https://www.youtube.com/watch?v=PxjbD2VtQVk Dynamics 365, Power BI and Flow: Live Streaming Sales Data: https://www.youtube.com/watch?v=e7PPYcrWbks Dynamics ERP World Cup…

Understanding WPF Namespaces

…use the same elements in their code, namespaces and prefixes are used. For example, if we had the namespaces below (using a URI to define the namespace): xmlns:a=”http://www.carldesouza.com/airplanes” xmlns:b=”http://www.carldesouza.com/boats” We…

JavaScript – Object defineProperty

…phonenumber }, “website”: { writable: true, enumerable: true, configurable: true, value: website }}); } //Print out Customer var Customer00001 = new Customer(“Bob”, “Smith”, “bob@test.com“, “111-222-7777”, “www.test.com“); console.log(Customer00001); This displays:  …