This seems so simple, but I’m stuck.
I am working in Sales Order Entry. OrderDtl has a field, DoNotShipBeforeDate. I have added a UD Field to the OrderRel table, DoNotShipBeforeDate_c and added that field to the Order Release screen.
When a date is entered in OrderDtl.DoNotShipBeforeDate on the Line Detail screen, I want that same date to fill in to OrderRel.DoNotShipBeforeDate_c.
I think this should be an event, but I’m at a loss on how to write that event. Any help would be greatly appreciated.
You can create an event with a trigger that would be DataTable/Column Changed/Your DataView/Your Column and then follow that up with a row-update widget to copy the data.
I think I get the first part, that’s where I’m copying from (target OrderDtl, columns DoNotShipBeforeDate), correct? (sorry for the questions, I’m really trying to understand what I’m doing here, not just follow instructions without understanding)
On the row-update widget, Ep Binding should be OrderRel.DoNotShipBeforeDate_c, (where I want this date to go) correct? Does anything else get filled in? I thought Expression should be {OrderDtl.DoNotShipBeforeDate} but that didn’t work .
The expression is typically used if you want to do some calculations.
You would put this (quotes and all) into the value field: "{OrderDtl.DoNotShipBeforeDate}"