Use PROC COPY to copy the SAS data sets from the IN= library to the transport file. MEMTYPE=DATA specifies that only SAS data sets are copied. SELECT selects the data sets you want to copy.
proc copy in=source out=xptout memtype=data;
   select bonus budget salary;
run;