I think you want the OUTPUT statement to get the confidence limits. The OUTEST is different than overall parameters.
Output out=yourdatasetname <options>=<variablenames>;
I don't suggest a specific syntax because you do not indicate whether you want confidence limits of predicted values L95 and U95, LCL and UCL or of the mean L95M / U95M and LCLM/ UCLM.
Similarly there are multiple standard error options: STDI (individual predicted value) STDP (mean predicted value) STDR (standard error of residuals)
The out= dataset name would have to be different than the OUTEST name. If you want both sets of values in one dataset then you need to combine the two sets.