Dev Server

Warning: This content may not be as expected. This server is for testing and POCs only. visit www.rrc.texas.gov for the actual website.

T-1 Page 3 Record

Filing Oil and Gas Reports Using Electronic Media

                           T-1 Page 3 Record

      
  Position    Length	Data Item		Data Type	Notes
        
  1 -   6   	6 	Operator Number		Numeric
       
  7 -   9   	3     	Report Type   		Alphanumeric  	Must be 'T3 '
        
  10 -  11   	2     	District      		Numeric       	Must be one of the
                                                  	        following: 01,02,
                                                	        03,04,05,06,07,08,
                                                	        09,10,11,13,14
        
  12      	1     	Filler        		Alphanumeric  	Must be spaces
       
  13      	1     	Type of Stock 		Alphanumeric  	
       
  14 -  98  	85     	Filler        		Alphanumeric  	Must be spaces
        
  99 - 102   	4     	Transport Date 		Numeric       	In Year (without the
                       			                        Century)Month order
        
  103 - 110   	8     	Net Barrels in 		Numeric
			Storage
        
  111 - 117   	7     	Tank Number   		Alphanumeric
       
  118 - 149  	32     	Tank Location 		Alphanumeric
       
  150 - 400 	252     Filler        		Alphanumeric
 
                                    
                       T-1 Page 3 COBOL Record Layout

        
  The position numbers on the right hand side give the beginning position for 
  that data item.
      

            01 T3-PAGE-3-RECORD.                                     POSITION
               03 T3-RECORD-ID.
                  05 T3-OPERATOR-NO          PIC 9(6).                  1
                  05 T3-REPORT-TYPE          PIC X(3).                  7
                     88 T3-T1-PAGE3-REPORT           VALUE 'T3 '.
                  05 T3-DISTRICT             PIC 9(2).                  10
                     88 T3-VALID-DISTRICT            VALUE 01,02,03,
                                                     04,05,06,07,08,
                                                     09,10,11,13,14
                  05 FILLER                  PIC X(1).                  12
                  05 T3-TYPE-OF-STOCK        PIC X(1).                  13
                     88 T3-CRUDE                     VALUE '1'.
                     88 T3-GASOLINE                  VALUE '2'.
                     88 T3-KEROSENE                  VALUE '3'.
                     88 T3-FUEL-OIL                  VALUE '4'.
                     88 T3-NATURAL-GASOLINE          VALUE '5'.
                     88 T3-MISC-PRODUCTS             VALUE '6'.
                     88 T3-OIL-IN-LINE               VALUE '7'.
                  05 FILLER                  PIC X(85).                 14
                  05 T3-TRANSPORT-DATE.
                     07 T3-TRANSPORT-YEAR    PIC 9(2).                  99
                     07 T3-TRANSPORT-MONTH   PIC 9(2).                  101
               03 T3-NET-BARRELS-IN-STORAGE  PIC 9(8).                  103
               03 T3-TANK-NUMBER             PIC X(7).                  111
               03 T3-TANK-LOCATION           PIC X(32).                 118
               03 FILLER                     PIC X(251).                150
   
                                            
                              T-1 Page 3 Data Dictionary
       

        T3-OPERATOR-NO
        The operator number assigned to the company by the RRC. Taken from the
        Organization Report (Form P-5).
        
        T3-REPORT-TYPE
        Must be 'T3 ' for page 3 records.
        
        T3-DISTRICT
        District part of gatherer's registration ID assigned by RRC.  See
        DR-DISTRICT for further details.
        
        T3-TYPE-OF-STOCK
        Indicates the type of stock being reported.

            CODE    TYPE OF STOCK
             1      Crude
             2      Gasoline
             3      Kerosene
             4      Fuel oil
             5      Natural gas
             6      Miscellaneous products
             7      Oil in-line
       
        T3-TRANSPORT-DATE
        The date the transportation information is for in year, month format.
        
        T3-NET-BARRELS-IN-STORAGE
        The total volume of stock in storage in whole barrels.
        
        T3-TANK-NUMBER
        The transporter assigned tank number.
        
        T3-TANK-LOCATION
        The general location of the tank.


Commissioners