EpBinding Checkbox Not Updating - Customer Shipment Entry

Beating my head against the wall on something that should be simple and I’ve done several times over.

We are running Ebiz Credit Card processing in Kinetic. At Customer shipment entry, I’d like to display that the order is a credit card order. In classic, this was just a checkbox linked to OrderHed.CheckBox20. I’ve done the same thing in application studio, but for some reason it will not update with it checked.
Here’s the checkbox


Here’s the order head from a Credit Card Order

Same order in the pack but the checkbox doesn’t update

I feel like I must be missing something very simple. Or its just a Friday afternoon.

2 Likes

What you’re showing here is telling me that is bound to a dataview within the SalesOrderEntry application and not to a DB field (because that is blank in Field Help) that it can write to and be bound to in a different application (i.e. CustShipmEntry).

1 Like

Thanks David.
I’m assuming I could write a data directive to populate that field if needed?

1 Like

Since OrderHed dataview is included in Customer Shipment, but CheckBox20 is not a database field… could you base your Customer Shipment checkbox off of a different credit card field?

For example, create a data rule in App Studio with a condition of:

OrderHed.CCTotal is > 0

or OrderHed.CardNumber is not “”

or… some other combination referencing a CC-based column…

then… set value of YourCheckBoxBinding = true?

1 Like

Honestly, I think what I would do is create a UD Column on the OrderHed table, rather than using CheckBox20. Because then those will automatically show up in the OrderHed dataview in both SalesOrderEntry and CustShipEntry (based on a UD field we have on the OrderHed table that behaves this way). Make that your binding in both applications and Bob’s your uncle.

1 Like

As always with this group… thank you for the responses and solutions.

Season 3 Thank You GIF by The Office

3 Likes