Scenario:
Using CDS as the data source for work instructions for many assemblies. Some assemblies have identical steps. For these identical steps I want to be able to edit them as needed in one entity record and have it feed all the places where that record is being used.
Intuitively I think something like this should work:
EntityMany has columns: ID, Common? (two OptionSet), and Text
EntityOne has ID, and Text
If entityMany.Common = true, EntityMany.Text = LookUp(EntityOne, ID = EntityMany.ID).Text
So EntityOne would hold the common steps. I've been trying to figure out how to do this with relationships and business rules because I need this to happen at the datasource not the app. I'm pretty sure that this sort of functionality is what CDS is made for so I'm hoping someone can point me toward a resource where something like this is explained. I've read the documentation and watched a few videos already but I really just want to get this done quickly instead of figuring it out all day. Help is very much appreciated. Thank you.
Hi @Anonymous ,
Do you want to update an entity based on another entity's value by using business rule?
I'm afraid it's not supported to set a business rule based on two entities.
Business rules are usually defined for an entity and apply to all forms.
Business rules are server-side logic that is used with canvas or model-driven apps to set or clear values in one or many fields in an entity.
For example, you create business rule in entity1, then you can not choose entity2 when you define the business rule.
As an alternative way, I suggest you update data in powerapps.
In an app, you could connect with multiple entities.
Try this formula to update:
ClearCollect(filtereddata,Filter(EntityMany,common='common (EntityMany)'.'true'));
ForAll(filtereddata,Patch(EntityOne,LookUp(EntityOne,ID=filtereddata[@ID]),{Text field:filtereddata[@Text field]}))
Then all the text field in entityone will be updated with the value of Text field in entitymany.
Here's a doc about updating multiple records for your reference:
https://powerapps.microsoft.com/en-us/blog/bulk-update-using-forall-and-patch/
Best regards,
mmbr1606
22
Super User 2025 Season 1
stampcoin
19
Michael E. Gernaey
15
Super User 2025 Season 1