Hello,
I have an input table with a column TEST_START_DATETIME that JMP initially recognizes as a Character/Nominal Data/Modeling Type as shown below.

I can set this column as a continuous date/time format type using the Column Info dialog.

Note the text is shifted to the right, indicating it's a cell.

However, when I try to do this in JSL I get an empty column. It looks like it converted the column to numeric type before applying the format type, causing it to get deleted.
dt = Current Data Table();
dt << Begin Data Update;
dt:TEST_START_DATETIME << Data Type("Numeric");
dt:TEST_START_DATETIME << Modeling Type("Continuous");
dt:TEST_START_DATETIME << Input Format("Format Pattern", "<YYYY>_<MM>_<DD>-<hh24>_<mm>_<ss>");
dt:TEST_START_DATETIME << Format("Format Pattern", "<YYYY>_<MM>_<DD>-<hh24>_<mm>_<ss>");
dt << End Data Update;
What could I be doing wrong?