web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Work instructions: how...
Power Apps
Answered

Work instructions: how to structure common work steps?

(0) ShareShare
ReportReport
Posted on by Microsoft Employee

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.

I have the same question (0)
  • Verified answer
    v-yutliu-msft Profile Picture
    Microsoft Employee on at

    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

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Congratulations to the April Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
Vish WR Profile Picture

Vish WR 1,033

#2
Valantis Profile Picture

Valantis 632

#3
11manish Profile Picture

11manish 607

Last 30 days Overall leaderboard