Sales Order Entry / Customer PO # Question

Is it possible to limit the entry of this field to 15 characters?

If so, how?

Thanks

Parents Reply
  • 0 in reply to Steve Passmore

    In addition to the business logic validation, you could augment this with a UI script that physically restricts the control from accepting any additional characters.

    Just create a Post-Load event on the pHeader and pHeaderW panels with the following logic.

    retval = oUIObj.SetControlProperty("CustomerPONo", "Len", 15)

    The logic above would still be required to restrict from the business object level accepting any data beyond 15 characters, in such areas like other BOI scripts, or Visual Integrator.

    just food for thought....

    Elliott

Children
No Data