| CS_Rpt_Console | Control System Report Console | NULL | BUTTON | | The current status report tabulates all cases by the most recently posted event by process. It shows counts and percentages. | $con=$_REQUEST["CS_Rpt_Console"];
$cs="";
$ea="";
$pc="";
$dc="";
if ($con=="Current Status") $cs="checked";
if ($con=="Ever At") $ea="checked";
if ($con=="Pending Cases") $pc="checked";
if ($con=="Delinquent Cases") $dc="checked";
echo " ";
echo " ";
if ($con=="Current Status") CS_Current_Status();
if ($con=="Ever At") CS_Ever_At();
if ($con=="Pending Cases") CS_Pending_Cases();
if ($con=="Delinquent Cases") CS_Delinquent_Cases(); | |