requests that the name space for the table on the SAS session is extended with the specified names.
proc imstat;
table lasrlib.prdsale (tempnames=(difference ratio));
run;
fetch actual -- month predict ratio / tempnames=(difference ratio)
tempexpress="difference = actual - predict; ratio = actual / predict";
run;
table lasrlib.accounts(tempnames=(total_deposits cust_name $ 20 deposit_count branch_count));