It is an easy option of using the Selection Tool "+" and the selecting and dragging the table to the bottom of the output;
However, I have not been able to delete the original table.
The following JSL does move the table and delete the old table
Names Default To Here( 1 );
x = Current Report();
x[Outline Box( 1 )] << append( x[Outline Box( 2 )] );
x[Outline Box( 2 )] << delete;
Jim