I have a simple regression that I would want to report standardized coefficients too. I run;

Code:
reg var_y var_x1 var_x2 ... , beta
outreg2 using table.doc, replace ct("ols")
My challenge is that the result table generated by the outreg2 command leaves the "standard beta" results column out and I have to manually patch them up. Checking documentation of the Outreg2 package dint seem to have a solution for my problem. Any idea?