I’m trying to set a value in every row of a dataview, but I’m not sure how I can go about doing a row update for every row. On Inspection Processing, I am testing receiving a part with Incoming Inspection Required, so I click the Inspection Data, and the Inspection Results Entry screen slides out. I was able to find the event, GenerateResults, and I created an event after GenerateResults to do a row update but it only changes the first entry on the dataview.
Is there a way I can update 1 column of all rows in a dataview? The goal is to default all incoming inspection results to Fail and have the users manually change it to Pass
I’d look at a post-processing BPM on whichever GetNew method (GetNewInspResults and GenerateResults look promising) that creates the dataset. 9/10 times that’s the easiest way to go to pre-pop data for users.
What I ended up doing was creating 2 events. 1 had a dataview-condition that checks if the PassedText is ‘P’ and then iterates through the second event that does a row-update for the dataview. Here are screenshots. For reference, there is a good zendesk article, from the UI Help, search “Frequently Used Event Actions and Triggers”. I put the screenshots below: