The output pdf contains lot of pages and out of that some of the pages has double entry of group and column headers are not printed for those groups..
Here is the SAS program
ods pdf startpage=no body=_webout;
proc report data=stdrep split=' ' nocenter panels=3 nowd style(REPORT)={cellspacing=0 cellpadding=2 background=white}
style(HEADER)={foreground=black font_weight=bold font_size = 1 just=center}
style(COLUMN)={foreground=black font_size = 1};
COLUMN sbu component bsp_proj_id project_code project pdm
impactno study_title special_name phase sdm actstatus fpfvp fpfva lplv dbl cetC cctC CRFPAGESTREATED
edcC outsrcC provider;
by grVar;
DEFINE sbu / DISPLAY 'TA' width=8 style(column)=[cellwidth=4% just=center];
DEFINE component / DISPLAY 'Compound' width=8 style(column)=[cellwidth=4% just=center];
DEFINE bsp_proj_id / DISPLAY 'BSP Project ID' width=8 style(column)=[cellwidth=4% just=center];
DEFINE project_code / DISPLAY 'Project Code' width=8 style(column)=[cellwidth=4% just=center];
DEFINE project / DISPLAY 'Project' width=8 style(column)=[cellwidth=4% just=center];
DEFINE pdm / DISPLAY 'PDM' width=8 style(column)=[cellwidth=4% just=center];
DEFINE impactno / DISPLAY 'BSP Study No' width=8 style(column)=[cellwidth=4% just=center];
DEFINE study_title /DISPLAY FLOW 'Study Title' width=24 style(column)=[cellwidth=11% just=left];
DEFINE special_name / DISPLAY FLOW 'Special Name' width=12 style(column)=[cellwidth=6% just=left];
DEFINE phase / DISPLAY 'Phase' width=10 style(column)=[cellwidth=5% just=center];
DEFINE sdm / DISPLAY 'SDM' width=14 style(column)=[cellwidth=9% just=left];
DEFINE actstatus / DISPLAY 'Act Status' width=18 flow style(column)=[cellwidth=9% just=left];
DEFINE fpfvp / DISPLAY 'FPFV (P)' width=14 style(column)=[cellwidth=7% just=center];
DEFINE fpfva / DISPLAY 'FPFV(A)' width=14 style(column)=[cellwidth=7% just=center];
DEFINE lplv / DISPLAY 'LPLV (A/P)' width=15 style(column)=[cellwidth=7.5% just=center];
DEFINE dbl / DISPLAY 'DB Lock (A/P)' width=15 style(column)=[cellwidth=7.5% just=center];
DEFINE cetC / DISPLAY 'ET (A/P)' width=8 style(column)=[cellwidth=4% just=center];
DEFINE cctC / DISPLAY 'CT (A/P)' width=8 style(column)=[cellwidth=4% just=center];
DEFINE CRFPAGESTREATED / DISPLAY width=8 'CRFs Treated' style(column)=[cellwidth=4% just=left];
DEFINE edcC / DISPLAY 'EDC' width=8 style(column)=[cellwidth=4% just=left];
DEFINE outsrcC /DISPLAY 'Outsrcd' width=8 style(column)=[cellwidth=4% just=left];
DEFINE provider /DISPLAY 'CRO' width=10 style(column)=[cellwidth=4% just=left];
run;
ods pdf close ;
********Sample output is as below..
Group=TA: PCA
COMPOUND: BAY12-8039
PROJECT: 120099 BAY12-8039/GMD/02 BAY12-8039, Product maintenance
PDM: Fischer, Cornelia Inge
Group=TA: PCA
COMPOUND: BAY12-8039
PROJECT: 120099 BAY12-8039/GMD/02 BAY12-8039, Product maintenance
PDM: Fischer, Cornelia Inge
11980 BAY12-8039,
No column header***************
Column Values *********
**Next Group ***
Column header*********
Column Values************
This happens only for some of the pages..
Message was edited by: anandbillava
Message was edited by: anandbillava
... View more