I'm still relatively new to Power Apps and Microsoft Power Platform in general, and sometimes the learning paths just have soo much information and limited to no examples or use cases. I really appreciate your visualization of these concepts, examples and step-by-step approach you've taken in these videos. Thank you so much!
Sir can you make a video to teach us a more advanced use case plugin like getting records from multiple tables and then showing it somewhere in the form.
Hi, great video, thanks. Is it possible that the plugin ignores potential error messages that are wanted? I.e. I have a field that should always be checked when I want to create a record, and if it is empty, an error message should be displayed. After the profile for this step, is the plugin or the step with the error message ignored?
I hope you plan to do a video on how to extend the vs 2022 solution to create project for developing javascripts including methods to create proxy classes for intellisense
Great video! Thanks a lot for giving a very thorough explanation of plugins. I though have a question I want to ask regarding the limitations of plugins. Is it possible to make a plugin that gets data from two separate tables, and compares them to one another?
Yes you can absolutely do that. Keep in mind though plugins execution timeout is 2 minutes so make them perform well. If anything that’s time or process consuming and not dependent on any other execution (can run async) then make them execute outside Dataverse
Hi Trying to use your Plugin Framework for adding a plugin to support customAPI (so not based on entity events usingt the target proeprty) Any suggestion how to link this to the IServiceProviders context GetService ?
Custom API is a plugin so you can inherit from the PluginBase class. Do you get any error when you inherit from PluginBase like you do for a regular plugin?
HI @@PowerMaverick Probably my knowledge of C# but from the MS CustomApi example I need an iServicePRovider object to get e link to the received input/outputparams. If I create a new class based on your pluginbase class this attribute is not available ?
I'm still relatively new to Power Apps and Microsoft Power Platform in general, and sometimes the learning paths just have soo much information and limited to no examples or use cases. I really appreciate your visualization of these concepts, examples and step-by-step approach you've taken in these videos. Thank you so much!
Great to hear! Hope to produce more such content in coming months.
Excellent video
Thanks
Sir can you make a video to teach us a more advanced use case plugin like getting records from multiple tables and then showing it somewhere in the form.
Next video will be about this. Make sure you subscribe and enable notifications so you can get the alerts. 😊
@@PowerMaverick Sure sir! I have already subscribed to the channel and click the bell icon as well to get the latest notification of your channel too.
Thanks so much sir. Wish best for you
Hi, great video, thanks. Is it possible that the plugin ignores potential error messages that are wanted? I.e. I have a field that should always be checked when I want to create a record, and if it is empty, an error message should be displayed. After the profile for this step, is the plugin or the step with the error message ignored?
Excellent
I hope you plan to do a video on how to extend the vs 2022 solution to create project for developing javascripts including methods to create proxy classes for intellisense
Great video! Thanks a lot for giving a very thorough explanation of plugins.
I though have a question I want to ask regarding the limitations of plugins.
Is it possible to make a plugin that gets data from two separate tables, and compares them to one another?
Yes you can absolutely do that. Keep in mind though plugins execution timeout is 2 minutes so make them perform well. If anything that’s time or process consuming and not dependent on any other execution (can run async) then make them execute outside Dataverse
Great Video. Would you thing the plugin should be registered on pre operation instead of post-operation to avoid another update to the same entity.
Yes definitely need a pre-op. This was just a demo focused on registering and debugging.
@@PowerMaverick Great Demo. Thanks.
Hi Trying to use your Plugin Framework for adding a plugin to support customAPI (so not based on entity events usingt the target proeprty) Any suggestion how to link this to the IServiceProviders context GetService ?
Custom API is a plugin so you can inherit from the PluginBase class. Do you get any error when you inherit from PluginBase like you do for a regular plugin?
HI @@PowerMaverick Probably my knowledge of C# but from the MS CustomApi example I need an iServicePRovider object to get e link to the received input/outputparams. If I create a new class based on your pluginbase class this attribute is not available ?