Elevating Microsoft Power Platform Grids with CRM GRID PLUS 2

In the fast-evolving world of digital business solutions, customization and efficiency are key. For users of the Microsoft Power Platform, especially those working with Microsoft Dataverse, grids are essential for displaying and interacting with data. However, the out-of-the-box (OOB) grids within Microsoft Dataverse, including dashboard grids, entity main list grids, form grids, associated grids, advanced find grids, and lookup window grids, often lack the flexibility that users need for a truly personalized experience. [Read More]

DP-600 Implementing Analytics Solutions Using Microsoft Fabric with 120 Questions

CASE 1 FROM QUESTION 01 TO 08

Question 01 Case1-01 Question 02 Case1-02 Question 03 Case1-03 Question 04 Case1-04 Question 05 Case1-05 Question 06 Case1-06 Question 07 Case1-07 Question 08 Case1-08

CASE 2 FROM QUESTION 09 TO 17

Question 09 Case1-09 Question 10 Case1-10 Question 11 Case1-11 Question 12 Case1-12 Question 13 Case1-13 Question 14 Case1-14 Question 15 Case1-15 Question 16 Case1-16 Question 17 Case1-17

YES/NO QUESTION FROM QUESTION 18 TO 31

Question 18 Case1-18 Question 19 Case1-19 Question 20 Case1-20 Question 21 Case1-21 Question 22 Case1-22 Question 23 Case1-23 Question 24 Case1-24 Question 25 Case1-25 Question 26 Case1-26 Question 27 Case1-27 Question 28 Case1-28 Question 29 Case1-29 Question 30 Case1-30 Question 31 Case1-31

SQL QUESTION FROM QUESTION 32 TO 43

Question 32 Case1-32 Question 33 Case1-33 Question 34 Case1-34 Question 35 Case1-35 Question 36 Case1-36 Question 37 Case1-37 Question 38 Case1-38 Question 39 Case1-39 Question 40 Case1-40 Question 41 Case1-41 Question 42 Case1-42 Question 43 Case1-43

OTHERS

Question 44 Case1-44 Question 45 Case1-45 Question 46 Case1-46 Question 47 Case1-47 Question 48 Case1-48 Question 49 Case1-49 Question 50 Case1-50 Question 51 Case1-51 Question 52 Case1-52 Question 53 Case1-53 Question 54 Case1-54 Question 55 Case1-55 Question 56 Case1-56 Question 57 Case1-57 Question 58 Case1-58 Question 59 Case1-59 Question 60 Case1-60 Question 61 Case1-61 Question 62 Case1-62 Question 63 Case1-63 Question 64 Case1-64 Question 65 Case1-65 Question 66 Case1-66 Question 67 Case1-67 Question 68 Case1-68 Question 69 Case1-69 Question 70 Case1-70 Question 71 Case1-71 Question 72 Case1-72 Question 73 Case1-73 Question 74 Case1-74 Question 75 Case1-75 Question 76 Case1-76 Question 77 Case1-77 Question 78 Case1-78 Question 79 Case1-79 Question 80 Case1-80 Question 81 Case1-81 Question 82 Case1-82 Question 83 Case1-83 Question 84 Case1-84 Question 85 Case1-85 Question 86 Case1-86 Question 87 Case1-87 Question 88 Case1-88 Question 89 Case1-89 Question 90 Case1-90 Question 91 Case1-91 Question 92 Case1-92 Question 93 Case1-93 Question 94 Case1-94 Question 95 Case1-95 Question 96 Case1-96 Question 97 Case1-97 Question 98 Case1-98 Question 99 Case1-99 Question 100 Case1-100 Question 101 Case1-101 Question 102 Case1-102 Question 103 Case1-103 Question 104 Case1-104 Question 105 Case1-105 Question 106 Case1-106 Question 107 Case1-107 Question 108 Case1-108 Question 109 Case1-109 Question 110 Case1-110 Question 111 Case1-111 Question 112 Case1-112 Question 113 Case1-113 Question 114 Case1-114 Question 115 Case1-115 Question 116 Case1-116 Question 117 Case1-117 Question 118 Case1-118 Question 119 Case1-119 Question 120 Case1-120

crmdialog

Process dialogs are deprecated and will be removed by December 1, 2020. Until that day. Did your company have replacement options? Replace dialogs Power Apps component framework Development of custom Html/JS Webresources with help of modern frameworks … With some keywords on Google: dynamics crm 365 cds dialog you found: The first post: Custom Dialog Boxes - Part 1 of Bob Guidinger. He wrote on: July 22, 2018 Then on July 29, 2018 he wrote second post: Custom Dialog Boxes - Part 2 [Read More]

View-FetchXML

You are a Dynamics 365/CDS developer. How you build your FetchXML string in JavaScript/C# code? Are you use the function: Download Fetch XML in the Advanced Find window? Wow, look like you have a lot of tasks :cold_sweat: after you Download Fetch XML Open the xml file with the text editor Find " and Replace with ’ Edit, join to make a correct string, also with a dynamic parameter ….. Instead click the button Download Fetch XML in the Advanced Find window, you can click the button View FetchXML near it by install the solution View-FetchXML [Read More]

Dynamics 365 Online S2S Authentication - Full Explain

Server-to-Server (S2S) authentication (only support Dynamics 365 online) was great, it use ClientId/SecretKey to authentication (instead use UserName/Password) and it use without Dynamics 365 license. But everybody have problem when use CllientId/SecretKey, the main problem is HTTP Error 401 - Unauthorized: Access is denied I headache this problem more than 3 days, and now, I succeed authentication with ClientId/SecretKey. This post I will fully explain you how I can achieve it. [Read More]

Please, don't hard code

When building hyperlinks to CRM in SSRS reports, please don’t hard code Wrong: hard coding your CRM URL. Do not set your URL to “https://crmserver/….” If you do this use the hyperlink will only work in one environment and will have to be rewritten to work in another environment. Right: Use the CRM_URL parameter in your report. This makes your links will work in all environments, even when offline. Parameters!CRM_URL Wrong: Using OTC (ObjectTypeCode) in your hyperlink expression. [Read More]

Get Sql ConnectionString from CRM server code

Sometime, your business logic need access direct SQL Server, and you want to know the ConnectionString of CRM Database. This code will help you get Sql ConnectionString from CRM Plugin/Custom Action/Custom Workflow (before that I saved the ConnectionString to the custom Options entity) public void Execute(IServiceProvider serviceProvider) { var context = (IPluginExecutionContext)serviceProvider.GetService(typeof(IPluginExecutionContext)); var platformContext = context.GetType().InvokeMember("PlatformContext", BindingFlags.GetProperty, null, context, null); var transaction = (SqlTransaction)platformContext.GetType().InvokeMember("SqlTransaction", BindingFlags.GetProperty, null, platformContext, null); throw new InvalidPluginExecutionException(transaction. [Read More]

Hide Next Stage, Set Active, Back Button in the Business Process Flows

I have a requirement in my current project that hide Next Stage, Set Active and Back button in the Business Process Flows To do that, I used an UnSupported code code below function hideBPFButton() { hideBPFButtons(); window.addEventListener("resize", hideBPFButtons); Xrm.Page.data.process.addOnStageSelected(hideBPFButtons); } function hideBPFButtons() { var dom = (Xrm == undefined || Xrm.Internal == undefined || Xrm.Internal.isTurboForm() == undefined || Xrm.Internal.isTurboForm() == false) ? document : parent.document; $("#stageSetActiveActionContainer", dom).remove(); $("#stageBackActionContainer", dom).remove(); $("#stageNavigateActionContainer", dom). [Read More]

Add more buttons on the form subgrid

Sometime, your business requirement need add some buttons in the form sub-grid like picture below (Account form, sub-grid Contacts). How I can do that 1. Prepare 2 web-resource png image 16x16 file. 1 for normal button 1 for hover button 2. Copy function below to your main js web-resource file. function createButton(grid, buttonName, buttonTooltip, buttonImage, buttonImageHover, callback) { if (grid == null || grid.length == 0) return; if (buttonName == null || buttonName. [Read More]

Get size of all tables in database

Sometime you need to get size of all tables in database. This SQL code will help you. DECLARE @tmpTable TABLE ( [RowCount] INT , [TableName] NVARCHAR(MAX) ) DECLARE @ResultTable TABLE ( [Name] NVARCHAR(MAX) , [Rows] INT , [Reserverd] NVARCHAR(MAX) , [Data] NVARCHAR(MAX) , [IndexSize] NVARCHAR(MAX) , [Unused] NVARCHAR(MAX) ) INSERT INTO @tmpTable ( [RowCount] , [TableName] ) SELECT [RowCount] = MAX(si.rows) , [TableName] = so.name FROM sysobjects so , sysindexes si WHERE so. [Read More]
SQL