Share all details about your problem, including any error messages you may have received.
We are experiencing an issue when trying to create a task schedule from the UI. If the task schedule name exceeds 80 characters, we encounter the following error, although we can update the task schedule with the same name from debug.
Upon checking the database, I noticed that the column size for JOB_NAME and TRIGGER_NAME is 200. I wanted to understand why we are seeing this difference in behavior - any pointers?
Yes Ivan, I see that as well. My question is - I wanted to understand why we are seeing this difference in behavior when saving the task schedule name from UI versus updating the task schedule name from debug.
Hi @sonali_manhas
The 80-character limit you’re seeing is actually enforced on the UI side in the identiyiq\scripts\sailpoint\tasks.js file.
if (validationSucceeded)
validationSucceeded = Validator.validateLength(name, 80, "#{msgs.err_name_length}");
There’s no official SailPoint documentation that mandates this specific limit. It appears to be a legacy constraint, likely carried over from earlier IIQ versions or older Quartz scheduler defaults and SailPoint hasn’t updated the UI logic to reflect the fact that the underlying database fields like JOB_NAME and TRIGGER_NAME which support up to 200 characters.You can save longer names via debug, but from the UI, it’ll fail unless you customize the validation.