Create the schedule calendar. GCPM1 is the activity data set. PROC CALENDAR uses the S_START and S_FINISH dates, calculated by PROC CPM, to print the schedule. The VAR statement selects only the variable TASK to display on the calendar output. See Schedule Calendar Based on Output from PROC CPM.
proc calendar data=gcpm1 holidata=nowork interval=workday; start e_start; fin e_finish; calid _cal_ / output=combine; holistart holista; holifin holifin; holivar name; var task; title 'Schedule for Experiment X-15'; title2 'Professor and Student Schedule'; run;