-1

I would like to create a Powerapps C# plugin to check if the Dataverse table column "expired" has been updated then make a modification to another table based if it's expired.

Need help with writing the initial check if the column "expired" was modified or added?

Chaka
  • 1,709
  • 11
  • 33
  • 58

2 Answers2

1

You sure you don't want Power Automate?

Dataverse trigger

When you create a flow that triggers on update, it can check which column gets updated, and only if the rowfilter criteria is met, your flow continues to change other fields for example.

Maybe something to look into?

Iona Varga
  • 509
  • 2
  • 8
1

The “filtering attribute” is available exactly for that purpose. Read more

Filtering attributes are a list of entity attributes that, when changed, cause the plug-in to execute. These attributes can be set when registering the plug-in using the Plug-in Registration tool. If no attributes are set, then the plug-in will execute every time an update message occurs.

enter image description here