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
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).
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…
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.