A possible solution is to create a report from the bubble chart and place it in a new window prior to closing the intermediate tables. Below is an example using a simple distribution analysis.
m=j(10,1,randomnormal());
dt=astable(m);
dist=Distribution(
Continuous Distribution( Column(1), Horizontal Layout( 1 ), Vertical( 0 ) )
);
newwindow("histogram",dist<<report);
close(dt,nosave);