Create the regression plot. The CLM option adds confidence limits for the mean predicted values. The CLI option adds confidence limits for the individual predicted values.
proc sgplot data=sashelp.class; reg x=height y=weight / CLM CLI; run;