Create the activities data set. Specify one activity in the first month and one in the last, each with a duration of 0. PROC CALENDAR does not print activities with zero durations in the output.
data acts;
   input sta : date7. act $ 11-30 dur;
   datalines;
01JAN97   Start                 0
31DEC97   Finish                0
;