*//////////////////////////////////////////////////////////////*                              
      * #DayOfWeek - Return the Day of the Week (Numeric)            *                              
      *                                                              *                              
      * DateIn - Input                                               *                              
      * Returns - Day of Week (1=Sun, 2=Mon, 3=Tue, etc...)          *                              
      *//////////////////////////////////////////////////////////////*                              
     D #DayOfWeek      PR            10I 0                                                          
     D  DateIn                         Z   Const                                                    
      *                                                                                             
      *//////////////////////////////////////////////////////////////*                              
      * #NameOfDay - Return the Name of the Day                      *                              
      *                                                              *                              
      * DayIn - Input                                                *                              
      * Returns - Name of Day (Sunday, Monday, Tuesday, etc...)      *                              
      *//////////////////////////////////////////////////////////////*                              
     D #NameOfDay      PR            10                                                             
     D  DayIn                        10I 0 Const                                                    
      *                                                                                             
      *//////////////////////////////////////////////////////////////*                              
      * #NameOfMonth - Return the Name of the Month                  *                              
      *                                                              *                              
      * MonthIn - Input                                              *                              
      * Returns - Name of Month (January, February, March, etc...)   *                              
      *//////////////////////////////////////////////////////////////*                              
     D #NameOfMonth    PR            10                                                             
     D  MonthIn                      10I 0 Const                                                    
      *                                                                                             
      *//////////////////////////////////////////////////////////////*                              
      * #GetGMTTime - Returns a timestamp in GMT                     *                              
      *                                                              *                              
      * Returns - Timestamp of current GMT Time                      *                              
      *//////////////////////////////////////////////////////////////*                              
     D #GetGMTTime     PR              Z                                                            
      *//////////////////////////////////////////////////////////////*                              
      * #ConvertTimeZone - Converts a Timestamp from one TZ to       *                              
      *  another                                                     *                              
      *//////////////////////////////////////////////////////////////*                              
     D #ConvertTimeZone...                                                                          
     D                 PR              Z                                                            
     D inTimeStamp                     Z   Const                                                    
     D inFromZone                    10    Const                                                    
     D inToZone                      10    Const                                                    
      *//////////////////////////////////////////////////////////////*                              
      * #CvtJSONDate - Convert 2021-09-28T21:28:56.455Z to Timestamp *                              
      *//////////////////////////////////////////////////////////////*                              
     D #CvtJSONDate    PR              Z                                                            
     D  DateIn                      128    Const