Table HypTabs.Vitals must be locked by another process (like another EG session having the table open).
Below two procedures require only read access to the table. Can you execute these two (without executing the code before)?
PROC CONTENTS DATA = HypTabs.Vitals VARNUM;
RUN;
PROC PRINT DATA = HypTabs.Vitals (OBS = 1);
RUN;
If you can't then some other process must be locking the table in write access. If you can then there must be another process locking the table with read access.