on my System (JMP Pro 15.0 or JMO 15.1) at Win10 it does not work.
To be more precise:
I open Big Class
Right click on "Distribution" -> Copy
Right click --> Paste --> Nothing changes!!!
I would have expected a script named "Distribution 2" to appear.
Copy works (because I can do paste into a new script window),
Paste probably also works (overwriting the current script with the same Name, so Nothing changes in the view).
But generating a copy of an existing script with a new Name does not work (i.e. replicating by adding " 2" to the Name doesn't work)
And the Miracle is, that it works sometimes.
Usually it works on the update script, and then a new one is created: "Update From Database 2"
and it works on table variables like "SQL", there "SQL 2" is generated.
Why doesn't it work Always?
For example see table generated by below script. For "SQL" it works, for "Oneway" it doesn't.
New SQL Query(
Version( 130 ),
Connection( "JMP" ),
JMP Tables(
["Big Class" => "$SAMPLE_DATA\Big Class.jmp"
]
),
QueryName( "SQLQuery1" ),
Select(
Column( "name", "t1" ),
Column(
"age",
"t1",
Analysis Type( "Ordinal" ),
Numeric Format( "Fixed Dec", "0", "NO", "" )
),
Column( "sex", "t1" ),
Column( "height", "t1", Numeric Format( "Fixed Dec", "0", "NO", "" ) ),
Column( "weight", "t1", Numeric Format( "Fixed Dec", "0", "NO", "" ) )
),
From( Table( "Big Class", Alias( "t1" ) ) ),
Where(
In List(
Column( "sex", "t1" ),
{"M"},
UI( SelectListFilter( ListBox, Base( "Categorical" ) ) )
)
)
) << Run
Georg