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 1A Record

Filing Oil and Gas Reports Using Electronic Media

                           T-1 Page 1A Record

   
  Position    Length  Data Item		  Data Type	  Notes
       
  1 -   6   	6     Operator Number	  Numeric
        
  7 -   9   	3     Report Type   	  Alphanumeric    Must be 'T1A'
          
  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     Category of 	  Alphanumeric    See Data Dictionary
                      Receipt
                          
  14 -  50  	37    Filler        	  Alphanumeric    Must be spaces
        
  51 -  82  	32    Company Received    Alphanumeric
                      From
                         
  83 -  98  	16    Filler        	  Alphanumeric    Must be spaces
        
  99 - 102   	4     Transport Date 	  Numeric         In Year (without the
                        		                  Century)Month order
                         
 103 - 134  	32    Import Operator     Alphanumeric
                      Address
                        
 135 - 147  	13    Import Operator	  Alphanumeric
 	              City
                        
 148 - 149   	2     Import Operator     Alphanumeric
                      State
                        
 150 - 154   	5     Import Operator      Numeric
                      Zip Code
                          
 155 - 158   	4     Filler        	   Alphanumeric
        
 159 - 168  	10    Import Operator      Numeric    	  In area code, prefix,
                      Telephone 	                  suffix order (no
                                                          punctuation)
                      
 169 - 200  	32    Facility Name 	   Alphanumeric
       
 201 - 205   	5     Oil Lease Number     Numeric
                          
 206 - 211   	6     RRC Gas ID    	   Numeric
       
 212 - 215   	4     Form Name     	   Alphanumeric

 216 - 217   	2     Registration 	   Alphanumeric
                      District
                        
 218 - 221   	4     Registration  	   Alphanumeric
                      Serial Number
                          
 222 - 281  	60    Comment       	   Alphanumeric
        
 282 - 289   	8     Actual Receipts      Numeric
                          
 290 - 400 	111   Filler        	   Alphanumeric
     
                                     
                      T-1 Page 1A COBOL Record Layout
       
  The position numbers on the right hand side give the beginning position for 
  that data item.

        
            01 T1A-PAGE-1A-RECORD.                                  POSITION
               03 T1A-RECORD-ID.
                  05 T1A-OPERATOR-NO         PIC 9(6).                  1
                  05 T1A-REPORT-TYPE         PIC X(3).                  7
                     88 T1A-T1-PAGE1A-REPORT         VALUE 'T1A'.
                  05 T1A-DISTRICT            PIC 9(2).                  10
                     88 T1A-VALID-DISTRICT           VALUE 01,02,03,
                                                      04,05,06,07,08,
                                                      09,10,11,13,14
                  05 FILLER                  PIC X(1).                  12
                  05 T1A-CATEGORY-OF-RECEIPT PIC X(1).                  13
                     88 T1A-FRAC-OIL                 VALUE '1'.
                     88 T1A-IMPORT                   VALUE '2'.
                     88 T1A-OTHER-RECEIPT            VALUE '3'.
                  05 FILLER                  PIC X(37).                 14
                  05 T1A-COMPANY-RECEIVED-FROM       PIC X(32).         51
                  05 FILLER                  PIC X(16).                 83
                  05 T1A-TRANSPORT-DATE.
                     07 T1A-TRANSPORT-YEAR   PIC 9(2).                  99
                     07 T1A-TRANSPORT-MONTH  PIC 9(2).                  101
               03 T1A-IMPORT-OPER-ADDRESS    PIC X(32).                 103
               03 T1A-IMPORT-OPER-CITY       PIC X(13).                 135
               03 T1A-IMPORT-OPER-STATE      PIC X(2).                  148
               03 T1A-IMPORT-OPER-ZIPCODE    PIC 9(5).                  150
               03 FILLER                     PIC X(4).                  155
               03 T1A-IMPORT-OPER-TELEPHONE  PIC 9(10).                 159
               03 T1A-FACILITY-NAME          PIC X(32).                 169
               03 T1A-RRC-NUMBER-OIL-LEASE   PIC 9(5).                  201
               03 T1A-RRC-NUMBER-GAS-RRC-ID  PIC 9(6).                  206
               03 T1A-RRC-NUMBER-FORM-NAME   PIC X(4).                  212
               03 T1A-RRC-NUMBER-REG-DISTRICT        PIC X(2).          216
               03 T1A-RRC-NUMBER-REG-SERIAL-NO       PIC X(4).          218
               03 T1A-RRC-NUMBER-COMMENT     PIC X(60).                 222
               03 T1A-ACTUAL-RECEIPTS        PIC 9(8).                  282
               03 FILLER                     PIC X(111).                290
                                     

                         T-1 Page 1A Data Dictionary
      

        T1A-OPERATOR-NO
        The operator number assigned to the company by the RRC. Taken from the
        Organization Report (Form P-5).
        
        T1A-REPORT-TYPE
        Must be 'T1A' for page 1-A records.
        
        T1A-DISTRICT
        District part of gatherer's registration ID assigned by RRC.  See
        DR-DISTRICT for further details.
        
        T1A-CATEGORY-OF-RECEIPT
        Indicates the receipt category of the report.

            CODE          CATEGORY DESCRIPTION
             1            Frac Oil
             2            Import
             3            Other Receipt
       
        T1A-COMPANY-RECEIVED-FROM
        The name of the company that received the product.
        
        T1A-TRANSPORT-DATE
        The date the transportation information is for in year, month format.
       
        T1A-IMPORT-OPER-ADDRESS
        The street or PO Box address of the receiving company.
        
        T1A-IMPORT-OPER-CITY
        The city of the above street address.
       
        T1A-IMPORT-OPER-STATE
        The US Post Office two-character state abbreviation for the city
        stated above.
        
        T1A-IMPORT-OPER-ZIPCODE
        The ZIP Code for the above address information.
        
        T1A-IMPORT-OPER-TELEPHONE
        The telephone number of the receiving company. The format is area code,
        phone number prefix, phone number suffix. Do not include punctuation
	in the phone number.
        
        T1A-FACILITY-NAME
        Name of the facility where receipt is made. Use the following types of
        names for the given categories:
        
                   	Lease Name
        FRAC OIL 
        IMPORT  	Point  or origin of crude being imported. Spell  out  the
       			state or foreign country name.
        OTHER 		Facility name
        
        T1A-RRC-NUMBER-OIL-LEASE
        Oil lease number of the lease from which liquid was received. (Used only
	for the 'frac oil' receipt category).
      
        T1A-RRC-NUMBER-GAS-RRC-ID
        Gas RRC ID number of the gas well from which liquid was received.
        (Used only for the 'frac oil' receipt category).
        
        T1A-RRC-NUMBER-FORM-NAME
        Name of the RRC form which gives the delivering company authority
        to deliver liquid (T-1, R-3, P-18, etc.). (Used only for the 'other'
	receipt category.)
        
        T1A-RRC-NUMBER-REG-DISTRICT
        District portion of the registration number of the facility that
        acknowledges the delivery. (Used only for the 'other' receipt
        category.)  Note:  Use the normal alphanumeric district designation
	and not the special numeric district code that is used in T1A-DISTRICT.
        
        T1A-RRC-NUMBER-REG-SERIAL-NO
        Serial number portion of the registration number of the facility that
        acknowledges the delivery. (Used only for the 'other' receipt category.)
        
        T1A-RRC-NUMBER-COMMENT
        When a receipt other than an 'import' or 'frac oil' is made from a
        facility that does not have an assigned RRC number, an explanation
	must be given as to the source of the liquid and COMMISSION authority
	covering this receipt.
      
        T1A-ACTUAL-RECEIPTS
        Actual receipts in net barrels.


Commissioners