Hi Folks.
I have a requirement to fetch the information of all plugins and registered steps 1like message, entity, operation all context data, but I have to fetch it in XML.
I have to create Power BI Reports from it.
What entities I have to use in fetch XML to get all these.
Please help on it.
*This post is locked for comments
Thanks Goutam, I got it.
Hello Dixit,
You will need to use advanced find on SdkMessageProcessingStep entity as shown in screen-shot below.
You can create a utility or write a JavaScript code to retrieve data from this entity and then write a for loop to convert your data into XML format.
Example:
result = <Your logic to retrieve data>;
If(result.length > 0)
{
var xml = "";
for (var i = 0; i<result.length; i++){
xml += "<Message>" + result[i].Message + "</Message>";
}
}
Regards,
Harshil Shah
Hi ,
You will find the information from SdkMessageProcessingStep and SdkMessageFilter table. Take a look below reference query -
community.dynamics.com/.../quick-tip-locate-plugins-and-steps
Hi ,
You will find the information from SdkMessageProcessingStep and SdkMessageFilter table. Take a look below reference query -
community.dynamics.com/.../quick-tip-locate-plugins-and-steps
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,240 Super User 2024 Season 2
Martin Dráb 230,149 Most Valuable Professional
nmaenpaa 101,156