Save the data set as a new data set called WORK.TEST. This data set has only the columns NAME, AGE, and SEX, and it replaces the data set WORK.TEST if it already exists.
   call send(tabid, '_saveAs', 'work.test',
            'y', 'name', 'age', 'sex');
 return;