Select the objects that you wish to see in the downloaded PDF
Info Desc Directly Accessed By Routines Accessed By FileMan Db Calls Fields External References Global Variables Directly Accessed Naked Globals Local Variables
MUMPS CODE: X ^DD(1200.4,3.5,9.2) S X1=Y(1200.4,3.5,2) S Y=$E(X1_"000",9,10)-$E(X_"000",9,10)*60+$E(X1_"00000",11,12)-$E(X_"00000",11,12),X2=X,X=$P(X,".",1)'=$P(X1,".",1) D ^%DTC:X S X=X*1440+Y
9.2 = S Y(1200.4,3.5,1)=$S($D(^KLAS(1200.4,D0,0)):^(0),1:"") S X=$P(Y(1200.4,3.5,1),U,4),Y(1200.4,3.5,2)=X S X=$P(Y(1200.4,3.5,1),U,3)
ALGORITHM: MINUTES(STOP,START)
DESCRIPTION: Total time instructor spent in class. Time is computed in minutes. Time recorded in hours and minutes is stored in HRS:MIN field 5.
(Elapsed time is computed using class start and stop times.)
MUMPS CODE: X ^DD(1200.4,5,9.2) S X=X\60,Y=X,X=Y(1200.4,5,4),X=X*Y,Y=X,X=Y(1200.4,5,3),X=X-Y,Y=X,X=Y(1200.4,5,2),X=X_Y
9.2 = X $P(^DD(1200.4,3.5,0),U,5,99) S Y(1200.4,5,1)=X S X=Y(1200.4,5,1)\60_": ",Y(1200.4,5,2)=X S X=Y(1200.4,5,1),Y(1200.4,5,3)=X S X=60,Y(1200.4,5,4)=X S X=Y(1200.4,5,1)
ALGORITHM: #3.5\60_": "_(#3.5-(60*(#3.5\60)))
DESCRIPTION: Total class time for instructor computed in hours and minutes.
(Elapsed time in minutes is stored in instructor time field 3.5)