Is there a lightweight method to limit a text box entry length on the client in apps 10 (similar to adding a max length attribute to an html tag)?
I would like to to this without creating a validation event. We have an external system that requires a smaller field size than what IFS allows.
Page 1 / 1
Hi @mdeanton ,
You can use the oracle LENGTH() function for the condition in a event like below:
BEGIN
IF (<some_condition>) THEN
IFSAPP.ERROR_SYS.Record_General('<LogicalUnit>','The value you have entered in the custom field does not exist in the LOV. Please enter a correct value and save.');