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

Filing Oil and Gas Reports Using Electronic Media

                         T-1 Page 1B Record
        
    Position   Length  	Data Item		Data Type	Notes
       
    1 -   6   	6     	Operator Number		Numeric

    7 -   9   	3     	Report Type   		Alphanumeric  	Must be 'T1B'
         
    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 Delivery	Alphanumeric  	
                         
    14 -  50  	37     	Filler        		Alphanumeric  	Must be spaces
         
    51 -  82  	32     	Company Delivered To	Alphanumeric
                          
    83 -  98  	16     	Filler        		Alphanumeric  	Must be spaces
         
    99 - 102   	4     	Transport Date 		Numeric       	In Year (without the
								Century) Month order
                          
    103 - 134  	32     	Export Operator	       	Alphanumeric
                        Address
                          
    135 - 147  	13     	Export Operator City    Alphanumeric
                  
    148 - 149   2     	Export Operator State	Alphanumeric
                      
    150 - 154   5     	Export Operator	        Numeric
                        Zip Code
                          
    155 - 158   4     	Filler        		Alphanumeric
        
    159 - 168  10     	Export Operator       	Numeric       	In area code, prefix
                        Telephone                    		suffix order
                        			                (no punctuation)
                      
    169 - 200  32     	Facility Name 		Alphanumeric
        
    201 - 204   4     	Form Name     		Alphanumeric
        
    205 - 206   2     	RRC District  		Alphanumeric
        
    207 - 210   4     	RRC Serial Number	Alphanumeric
      
    211 - 270  60     	Comment       		Alphanumeric
        
    271 - 278   8     	Actual Deliveries       Numeric
                       
    279 - 400 	122     Filler        		Alphanumeric

                                    
                       T-1 Page 1B COBOL Record Layout
       
  The position numbers on the right hand side give the beginning position for
  that data item.
      

            01 T1B-PAGE-1B-RECORD.                                  POSITION
               03 T1B-RECORD-ID.
                  05 T1B-OPERATOR-NO         PIC 9(6).                  1
                  05 T1B-REPORT-TYPE         PIC X(3).                  7
                     88 T1B-T1-PAGE1B-REPORT         VALUE 'T1B'.
                  05 T1B-DISTRICT            PIC 9(2).                  10
                     88 T1B-VALID-DISTRICT           VALUE 01,02,03,
                                                      04,05,06,07,08,
                                                      09,10,11,13,14
                  05 FILLER                  PIC X(1).                  12
                  05 T1B-CATEGORY-OF-DELIVERY        PIC X(1).          13
                     88 T1B-WHOLESALE-RETAIL         VALUE '1'.
                     88 T1B-EXPORT                   VALUE '2'.
                     88 T1B-FRAC-OIL-DELIVERY        VALUE '3'.
                     88 T1B-OTHER-DELIVERY           VALUE '4'.
                  05 FILLER                  PIC X(37).                 14
                  05 T1B-COMPANY-DELIVERED-TO        PIC X(32).         51
                  05 FILLER                  PIC X(16).                 83
                  05 T1B-TRANSPORT-DATE.
                     07 T1B-TRANSPORT-YEAR   PIC 9(2).                  99
                     07 T1B-TRANSPORT-MONTH  PIC 9(2).                  101
               03 T1B-EXPORT-OPER-ADDRESS    PIC X(32).                 103
               03 T1B-EXPORT-OPER-CITY       PIC X(13).                 135
               03 T1B-EXPORT-OPER-STATE      PIC X(2).                  148
               03 T1B-EXPORT-OPER-ZIPCODE    PIC 9(5).                  150
               03 FILLER                     PIC X(4).                  155
               03 T1B-EXPORT-OPER-TELEPHONE  PIC 9(10).                 159
               03 T1B-FACILITY-NAME          PIC X(32).                 169
               03 T1B-RRC-NUMBER-FORM-NAME   PIC X(4).                  201
               03 T1B-RRC-NUMBER-DISTRICT    PIC X(2).                  205
               03 T1B-RRC-NUMBER-SERIAL-NO   PIC X(4).                  207
               03 T1B-RRC-NUMBER-COMMENT     PIC X(60).                 211
               03 T1B-ACTUAL-DELIVERIES      PIC 9(8).                  271
               03 FILLER                     PIC X(122).                279
 
                          T-1 Page 1B Data Dictionary
     
        T1B-OPERATOR-NO
        The operator number assigned to the company by the RRC. Taken from the
        Organization Report (Form P-5).
        
        T1B-REPORT-TYPE
        Must be 'T1B' for page 1-B records.
        
        T1B-DISTRICT
        District part of gatherer's registration ID assigned by RRC. See
        DR-DISTRICT for further details.
        
        T1B-CATEGORY-OF-DELIVERY
        Indicates the delivery category for the report.

           CODE    CATEGORY DESCRIPTION
            1      Wholesale/Retail
            2      Export
            3      Frac oil delivery
            4      Other delivery
      
        T1B-COMPANY-DELIVERED-TO
        The company name the product was delivered to.
        
        T1B-TRANSPORT-DATE
        The date the transportation information is for in year, month format.
        
        T1B-EXPORT-OPER-ADDRESS
        The street or PO Box address of the company the product was delivered to.
        
        T1B-EXPORT-OPER-CITY
        The city of the above street address.
        
        T1B-EXPORT-OPER-STATE
        The US Post Office two-character state abbreviation for the city stated
        above.
        
        T1B-EXPORT-OPER-ZIPCODE
        The ZIP Code for the above address information.
        
        T1B-EXPORT-OPER-TELEPHONE
        The telephone number of the company the product was delivered to. The
        format is area code, phone number prefix, phone number suffix. Do not
        include punctuation in the phone number.
        
        T1B-FACILITY-NAME
        Name of the facility where delivery is made. Use the following types of
        names for the given categories:
        
        WHOLESALE       No facility name necessary
        EXPORT          Destination point of crude or products being exported.
                        Spell out the state or foreign country name.
        FRAC OIL        Facility name
        OTHER           Facility name
        
        T1B-RRC-NUMBER-FORM-NAME
        Name of RRC form which gives the receiving company authority to receive
        liquid. (Used only for the 'other' delivery category.)
        
        T1B-RRC-NUMBER-DISTRICT
        District portion of the registration number of the facility that
        acknowledges the receipt. (Used only for the 'other' delivery category.)
        Note:  Use the normal alphanumeric district designation and not the 
	special numeric district code that is used in T1B-DISTRICT.
        
        T1B-RRC-NUMBER-SERIAL-NO
        Serial number portion of the registration number of the facility that
        acknowledges the receipt. (Used only for the 'other' delivery category.)
        
        T1B-RRC-NUMBER-COMMENT
        When delivery other than 'wholesale' or 'export' is made to a facility
        not required to have a RRC number, a statement or explanation showing 
	the purpose should be provided.
        
        T1B-ACTUAL-DELIVERIES
        The actual delivery in net barrels.


Commissioners