Modifying OE Order Entry Screen
Modifying OE Order Entry Screen
(OP)
EM10
In OE Order Entry screen, I’m wondering if it is possible to make a text field user required, using VBA.
Say if a customer had YesNofield1 checked; Using SQL within VBA, is there a way to set the PO text field to required if the query comes back true?
In OE Order Entry screen, I’m wondering if it is possible to make a text field user required, using VBA.
Say if a customer had YesNofield1 checked; Using SQL within VBA, is there a way to set the PO text field to required if the query comes back true?
RE: Modifying OE Order Entry Screen
Software Training, Implementation, Programming and Support for Macola Progression, Macola ES, Macola 10, Synergy, and Crystal Reports.
Check out our Macola tools:
www.gainfocus.biz/exceladdin.html
RE: Modifying OE Order Entry Screen
That's the field I'm talking about. I guess what I'm asking is there a way to make that field conditionally required?
RE: Modifying OE Order Entry Screen
Conditionally required? Yes this is doable with VBA, you'll need to define the conditions.
in general terms, on the macform_close() event (or perhaps a different event, I'd have to research it) you test test your conditions and if the oe_po_no is blank. If so disallow the save of the order, send up a message box that the PO is required, ad set the focus to the PO field.
The details kind of go beyond the scope of this forum. If this is something you are not comfortable with, you should contact your Macola reseller or Exact regional office.
It might be easier just to make the PO field a required field 100% of the time, which only takes 10 minutes.
Software Training, Implementation, Programming and Support for Macola Progression, Macola ES, Macola 10, Synergy, and Crystal Reports.
Check out our Macola tools:
www.gainfocus.biz/exceladdin.html