Hi,
I'm having the same problem as the person in an old thread here:
http://www.visualcron.co....aspx?g=posts&m=6440 I've got a SQL Notification which gets called when a task fails. It calls a stored procedure with a number of parameters, but text is being truncated if I use variables.
For example:
SQL Notification parameters
GroupName: MyReallyLongGroupName
JobName: {JOB(Active|Name)}
TaskName: {TASK(Active|Name)}
This inserts a record like this:
GroupName: MyReallyLongGroupName
JobName: AVeryVeryLongJobNa
TaskName: MyReallyLongTaskNam
I *think* what VisualCron is doing is truncating the *results* of the formulas to the length of the formula string:
JobName parameter
"{JOB(Active|Name)}" - 18 characters
"AVeryVeryLongJobNa" - 18 characters
123456789012345678
TaskName parameter
"{TASK(Active|Name)}" - 19 characters
"MyReallyLongTaskNam" - 19 characters
1234567890123456789