I am running SAS 9.1.3 Service Pack 4 on XP.
I have the following proc report in ODS PDF. As written, just=d does not work. It becomes as if just=r. However, if I comment out either of the break statements, just=d works as expected. Not so much an open issue as just bug identification. The extra break in there is solely to build in more white space into the report, but isn't necessary.
proc report data = ii_2_t3 nowindows split = '~';
column _label_ sort _stat_ baseline endpoint;
define _label_ / order style = [just = l] 'Lab';
define sort / order noprint;
define _stat_ / display style = [just = l] 'Statistic';
define baseline / display style = [just = d] 'Baseline';
define endpoint / display style = [just = d] 'Endpoint';
break after _label_ / suppress summarize;
break before _label_ / suppress summarize;
run;