As I said in another one your suggestions, I don't think this belongs in Suggestions. When some numbers aren't displayed as you want, you could simply apply the right format/function to the data before displaying it. SAS already gives you all the tools to display dates, datetimes and times in whatever way you want.
So if you have a variable named DATETIME which contains year, date, month, hours, minutes, seconds and milliseconds, you could create a new variable which contains the time part and format it as you wish.
In a SAS data step
hour_min = timepart(datetime);
format hour_min hhmm.;
... View more