Sending the Get As Report message to the data table will return a TableBox of the data table without any links to the original table.
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA\Big Class.jmp" );
nw = New Window( "Big Class",
dt << Get As Report()
);
Close( dt, NoSave );
Justin