Max Character Pop Up

Hello, I am trying to get it so when a field has more than 35 characters it pops up a prompt what is the best way to go about this ?

for the One Time Ship to Fields

I believe the best way to do this would be a BPM. That BPM would fire when the conditions are met, and a standalone message would popup. You can then customize what the message says.

1 Like

this.ttOrderHed.Any(r => (r.RowMod == ā€œAā€ || r.RowMod == ā€œUā€)
&& !string.IsNullOrEmpty(r.OTSAddress1)
&& r.OTSAddress1.Length > 35)

I have tried this code in BPM however it says TT table does not exist

all good got it working thanks :stuck_out_tongue:

2 Likes