Having a hard time figuring out how to bypass this JMP 'feature'.

I have dynamic control chart limits calculated in a report and I really do need triage. But the problem is that JMP live does not support that. My question is why not?
Sure, it is calculated each time, and some processes are unstable but what if mine is and I need a way of notifying engineers. Anyone have any ideas?
Outline Box("Control Chart — UTS",
Control Chart Builder(
Data Table(dtSub),
Size(800, 600),
Show Two Shewhart Charts(1),
Show Control Panel(0),
Show Limit Summaries(0),
Variables(Y(:UTS), Subgroup(:HN), Subgroup(:SN, Position(1))),
Customize Tests(Test 2(11, "2")),
Customize Tests(Test 3(5, "3")),
Chart(Points(Statistic("Individual")),
Limits(
Show Center Line(0),
Show Lower Limit(0),
Show Upper Limit(0)
),
Warnings(Test 2(1), Test3(1))
),
SendToReport(
Dispatch({}, "UTS", ScaleBox, {
Add Ref Line(uclUTS, "Solid", "Red", Eval Insert("UCL = ^Char(Round(uclUTS, 2))^"), 2),
Add Ref Line(lclUTS, "Solid", "Red", Eval Insert("LCL = ^Char(Round(lclUTS, 2))^"), 2),
Add Ref Line(meanUTS, "Dashed", "Blue", Eval Insert("Mean = ^Char(Round(meanUTS, 2))^"), 1)
})
)
)
),
Edit (jthi): added jsl formatting and fixed spacing