Create the data set REFLIB.JOBS2 and calculate variable YEN.
The DATA step uses a SET statement to read the REFLIB.JOBS data set.
data reflib.jobs2; set reflib.jobs; yen=dollars*125; run;