8,104 questions
0
votes
0
answers
36
views
How to write Custom Dimension?
In my CRM 365 Plugin I have requirement to write log to Application Insight, I'm able to achieve this using ILogger and Microsoft.Xrm.Sdk.PluginTelemetry library. But I have struggled to write log ...
0
votes
0
answers
22
views
How do I broker keycloak as a adfs client with an oauth provider? [closed]
I have a Microsoft Dynamics 365 CE on premise instance.
I'm able to configure it to work with ADFS and configure it using the Microsoft Dynamics 365 Deployment Manager, in which I configure claims-...
1
vote
0
answers
26
views
Power pages portal auth token validation failed with public key
I created a self-signed certificate and added it in power platform admin center using the following commands:
$certificateName = "powerpages.yourdomain.com"
$certPassword = ConvertTo-...
1
vote
0
answers
54
views
Dataverse plugin ExecutionContextId shows different GUID each execution - instances not cached?
According to Microsoft's documentation on Develop IPlugin implementations as stateless:
"Because the platform caches plug-in class instances, the constructor isn't called for every invocation of ...
0
votes
0
answers
40
views
What is the correct syntax for querying many-to-many relationships in FetchXML when the intersect table is not directly accessible?
I'm trying to retrieve related equipment records from a test record using FetchXML in Dataverse. There is a many-to-many relationship between the test table and the equipment table.
A join (intersect) ...
0
votes
1
answer
66
views
D365 Plugin - Retrieve uniquename of active process flow
I have a working plugin which updates the active business process flow step for any table and any process flow. In order to update the active step on a business process flow instance, the uniquename ...
1
vote
0
answers
23
views
PowerPlatform Dataverse - Temp folder access issue while calling organisation service endpoint
I'm working with a dot net based web application that connects to two on-premises CRM (Dataverse) organizations (Org A and Org B) hosted on the same server. Im fetching data using API endpoint url. ...
0
votes
1
answer
80
views
Turn off comma separator in Power Apps
Is there a way to turn off commas on my ids in Power apps?
By default, when I open up the Choices editor, all ids use commas as a separator. I'd like it to use no separator.
So for example, instead ...
0
votes
0
answers
37
views
Blank Values Needed in FetcXML
I am busy migrating a SSRS report, which uses SQL datasets, to use FetchXML datasets.
I have two datasets. A main dataset and a list dataset which provides me the list of Conflicts Checks.
I am trying ...
0
votes
0
answers
54
views
Auto Publish an Ai Model using Power Automate
I have developed a prediction model using Power Apps and subsequently created a Power Automate flow for retraining the model. Now, I aim to automatically publish the retrained model. Although I am ...
1
vote
1
answer
58
views
Get a ConnectionString from the Microsoft XRM SDK IOrganizationService
I'm using the Microsoft XRM SDK to connect external websites to our Microsoft Dynamics instance. This all works fine, but now I want to clean-up years of inputted data.
For example, the Dutch postal ...
0
votes
0
answers
124
views
Connecting to Dynamics CRM fails with proper credentials and message The HTTP request was forbidden with client authentication scheme 'Anonymous'
I am using the XrmToolkit and a connection string to connect to Dynamics 365, with the following call:
var crmServiceClient = new CrmServiceClient(connectionString);
The same code with the same ...
0
votes
0
answers
29
views
SSRS Column Grouping Final Total
I have applied parent row group
=Fields!SubQuote_details_productid_parentproductid.Value
and Child row group
=Fields!SubQuote_details_productid.Value
I have also applied column parent group
=Fields!...
1
vote
0
answers
121
views
Unable to Edit Ribbon in Dynamics 365 Using Ribbon Workbench
I'm having trouble editing the ribbon using Ribbon Workbench in Dynamics 365. Previously, in the 2024 version, it worked as expected, but now in the 2025 version, I'm unable to make changes. I receive ...
0
votes
0
answers
51
views
Filter built-in list based on contact's account and related connections
I have a list which contains various items belonging to an Account. I have contacts which by default can only belong to an Account. This works well, for example the default Company Name look-up field ...
-1
votes
1
answer
155
views
How to access the notifications from a form in dynamics CRM?
On a form, when an action is triggered from a custom button on the form, a notification is appeared for some seconds and then disappears. I want with javascript to get when this notification appears ...
0
votes
0
answers
75
views
FetchXML query: How to search within a linked entity’s name field?
I’m working with a FetchXML query to retrieve data from Microsoft Dynamics CRM, and I need to filter the results based on a search term that should match fields from both the main entity and a linked ...
0
votes
1
answer
123
views
Dynamics CRM QueryExpression with LinkEntity
I am using the following code
QueryExpression query = new ("account") {
ColumnSet = new ColumnSet(
"accountid",
"name",
"primarycontactid"
),...
0
votes
0
answers
116
views
Can I add JS code to the Case Resolution form in Dynamics 365 Customer Service?
My task is to filter the available status reasons for a Case, based on the BPF stage of the Case and the Case Type. I wrote JS function which works completely fine on the Case Form, but with that ...
0
votes
1
answer
99
views
How to get inline CSS of a PCF control in a D365 form?
I have a PCF control on a form in Dynamics 365. I want to get the inline CSS of that PCF control on save event of the form. So far I've tried this code to get the CSS but it always falls on the first ...
0
votes
1
answer
187
views
Data Migration of Activities using Kingswaysoft
How to map 'To', 'From', 'Bcc', and 'Cc' email fields in KingswaySoft where the data type is 'ntext'? I'm getting GUIDs for these fields in the source, but the GUIDs are different from those in the ...
0
votes
1
answer
108
views
How to Handle Chat Session Closure When Agent Refreshes Tab or Disconnects in Customer Service Workspace?
I am using the Customer Service Workspace and facing a critical issue:
If a support agent refreshes the tab or gets disconnected from the chat for any reason, the chat session closes automatically, ...
1
vote
0
answers
91
views
Dynamics 365 Virtual Entity With Server-Side Paging Not Retrieving Data Correctly When Passing Query Parameters
I’m working with Dynamics 365 9.1 On-Premises and setting up a Virtual Entity connected to an external OData v4 API. The goal is to use server-side paging. The API can accept query parameters (skip ...
0
votes
1
answer
37
views
In a self-referencing entity, how to prevent auto-population of fields which are lookups of such entity when in 'New' in child record associated view?
We have a self-referencing entity (i.e., the form for such entity has some fields which are a look-up of records in such entity).
The records in such entity are hierarchical (e.g., record A is the ...
1
vote
0
answers
93
views
How do I remove a subGrid filter on deselect of the related subGrid record? I have managed to filter the related subGrid onRecordSelect of main grid
'I have 2 subGrids on a form, the second of which filters based on record select of the first subGrid, however, on deselect of the record, the related subGrid filter remains. How do I remove this ...