Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Microsoft Dataverse
Answered

Work instructions: how to structure common work steps?

(0) ShareShare
ReportReport
Posted on by

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.

Categories:
  • Verified answer
    v-yutliu-msft Profile Picture
    on at
    Re: Work instructions: how to structure common work steps?

    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,

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Announcing the Engage with the Community forum!

This forum is your space to connect, share, and grow!

🌸 Community Spring Festival 2025 Challenge Winners! 🌸

Congratulations to all our community participants!

Warren Belz – Community Spotlight

We are honored to recognize Warren Belz as our May 2025 Community…

Leaderboard > Power Apps - Microsoft Dataverse

#1
mmbr1606 Profile Picture

mmbr1606 22 Super User 2025 Season 1

#2
stampcoin Profile Picture

stampcoin 19

#3
Michael E. Gernaey Profile Picture

Michael E. Gernaey 15 Super User 2025 Season 1

Overall leaderboard

Featured topics