Register & Debug a Dataverse Plugin

แชร์
ฝัง
  • เผยแพร่เมื่อ 10 ก.พ. 2025

ความคิดเห็น • 20

  • @shauntaejones9311
    @shauntaejones9311 ปีที่แล้ว +1

    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!

    • @PowerMaverick
      @PowerMaverick  ปีที่แล้ว

      Great to hear! Hope to produce more such content in coming months.

  • @kannankarmegam-bne
    @kannankarmegam-bne ปีที่แล้ว +2

    Excellent video

  • @Muhammad13389
    @Muhammad13389 2 ปีที่แล้ว +5

    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.

    • @PowerMaverick
      @PowerMaverick  ปีที่แล้ว

      Next video will be about this. Make sure you subscribe and enable notifications so you can get the alerts. 😊

    • @Muhammad13389
      @Muhammad13389 ปีที่แล้ว

      @@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.

  • @vohoanghaduong6639
    @vohoanghaduong6639 ปีที่แล้ว +2

    Thanks so much sir. Wish best for you

  • @blutkraehe_official
    @blutkraehe_official 13 วันที่ผ่านมา

    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?

  • @shrirangmirajkar7711
    @shrirangmirajkar7711 5 หลายเดือนก่อน

    Excellent

  • @shrirangmirajkar7711
    @shrirangmirajkar7711 5 หลายเดือนก่อน

    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

  • @arianibraimi2607
    @arianibraimi2607 ปีที่แล้ว +1

    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?

    • @PowerMaverick
      @PowerMaverick  ปีที่แล้ว

      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

  • @sgeorge1642
    @sgeorge1642 ปีที่แล้ว

    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.

    • @PowerMaverick
      @PowerMaverick  ปีที่แล้ว +1

      Yes definitely need a pre-op. This was just a demo focused on registering and debugging.

    • @sgeorge1642
      @sgeorge1642 ปีที่แล้ว

      @@PowerMaverick Great Demo. Thanks.

  • @bertnatenstedt7071
    @bertnatenstedt7071 ปีที่แล้ว

    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 ?

    • @PowerMaverick
      @PowerMaverick  ปีที่แล้ว

      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?

    • @bertnatenstedt7071
      @bertnatenstedt7071 ปีที่แล้ว

      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 ?