Creating a Bing Custom Search Instance with Keys for Bing API

…key: This will take you to https://azure.microsoft.com/en-us/try/cognitive-services/my-apis/?api=bing-custom-search to create a key. Click Add: You will then see the endpoint (e.g. https://api.cognitive.microsoft.com/bingcustomsearch/v7.0) and your keys: Note you can also generate the…

Panels and Layout in USD

…out the XAML of a typical panel layout: <Grid xmlns=”http://schemas.microsoft.com/winfx/2006/xaml/presentation” xmlns:x=”http://schemas.microsoft.com/winfx/2006/xaml” xmlns:mc=”http://schemas.openxmlformats.org/markup-compatibility/2006″ xmlns:d=”http://schemas.microsoft.com/expression/blend/2008″ mc:Ignorable=”d” xmlns:local=”clr-namespace:Microsoft.Crm.UnifiedServiceDesk.Dynamics;assembly=Microsoft.Crm.UnifiedServiceDesk.Dynamics” xmlns:USD=”clr-namespace:Microsoft.Crm.UnifiedServiceDesk.Dynamics.PanelLayouts;assembly=Microsoft.Crm.UnifiedServiceDesk.Dynamics”> <Grid Grid.Name=”LayoutRoot”> <Grid.Resources> <local:CRMImageConverter x:Key=”CRMImageLoader” /> </Grid.Resources> <Grid.RowDefinitions> <RowDefinition Height=”40″ /> <RowDefinition Height=”*” />…

Passing Parameters in URL to Filter a Power BI Report

…City = ‘Oklahoma City’, we can do: https://app.powerbi.com/groups/me/reports/02ff8888-a5fd-4dc7-c9dabf5ca0a5/ReportSection?filter=Accounts/City eq ‘Oklahoma City’ As mentioned, this is useful for embedding scenarios. For more information on operators and data types, check out https://docs.microsoft.com/en-us/power-bi/service-url-filters….

Walkthrough of Creating the Microsoft PowerApps PCF Sample Component

…TS_LinearInputComponent.css: Next, go to the link https://docs.microsoft.com/en-us/powerapps/developer/component-framework/implementing-controls-using-typescript#adding-style-to-the-code-component and select Copy from 3: Paste it into the new TS_LinearInputComponent.css file: Note we already have a reference to this file in the…

Retrieving a Record using Web API by Id or Name in Dynamics 365

…For example: https://yourorg.api.crm.dynamics.com/api/data/v9.1/accounts(D494B650-73FF-E611-8104-E0071B669E61) Returns: To get by name (accounts has a name field), we would use filter: https://yourorg.api.crm.dynamics.com/api/data/v9.1/accounts?$filter=name eq ‘the name‘ E.g. https://yourorg.api.crm.dynamics.com/api/data/v9.1/accounts?$filter=name eq ‘7-Eleven and Udaside label’ Returns:  …

How to Setup MFA in Azure AD

…into https://portal.azure.com/ and select Azure Active Directory: Select Multi-factor authentication (you don’t need to select a user at this point): This takes us to the Multi-factor Authentication screen. Select a…