I have a bunch of data stored in a UD09 table. I have a dashboard that shows the data in a grid. I also have an entry form on the dashboard where you type in values and click add record to save the values to UD09. This is more or less working alright.
I want to be able to look at the grid, click on a row, and have the values from that row populate the controls elsewhere on the form. I am looking for a kinetic event widget that pulls the value from my dataview and puts it into a specific control on the form. So dvOJI.UD09_Key1 would populate the textbox: myPartNum.
I just can’t find the kinetic event to make this work.
Thanks!
Nate
You shouldn’t need an event. Just make sure the binding is to the same dataview that your grid is linked to.
So, if the grid is dvOJI then you could set the epBinding on the control to dvOJI.UD09_Key1 and that’s it. When you click a new row, it will update automatically.
I set all my controls to Transview, so that when users type values in, they can eventually get saved through that UBAQ/BPM custom action. If I set them to dvOJI then I won’t be able to type into them as blank fields. I guess I am trying to dual-use the fields. Which was trivial in classic.
Awesome! So the trigger is rowchanged on that view, but what is the tool to take the value from the dataview and push it into the textbox (or other controls?)