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
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.
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 ![]()