TINV_INV_HEAD SAP (Bill Header) Table details

Dictionary Type: Table
Description: Bill Header




ABAP Code to SELECT data from TINV_INV_HEAD
Related tables to TINV_INV_HEAD
Access table TINV_INV_HEAD




Table field list including key, data, relationships and ABAP select examples

TINV_INV_HEAD is a standard SAP Table which is used to store Bill Header data and is available within R/3 SAP systems depending on the version and release level.

The TINV_INV_HEAD table consists of various fields, each holding specific information or linking keys about Bill Header data available in SAP. These include INT_INV_NO (Internal Bill/Payment Advice Number), EXT_SENDER (External Description of Bill/PAN Sender), EXT_RECEIVER (External Description of Bill/PAN Recipient), INVOICE_TYPE (Type of Bill / Type of Payment Advice Note).. See below for full list along with technical details, documentation, text table, check tables, foreign key relationships, conversion routines, relevant tcodes and example ABAP select code etc. .

Delivery Class: A - Application table (master and transaction data)
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)


SAP TINV_INV_HEAD table fields - Full list of fields found in SAP data dictionary

Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
MANDTClient MANDTCLNT3Assigned to domainMANDT
INT_INV_NOInternal Bill/Payment Advice Number INV_INT_INV_NONUMC18INV_INT_INV_NO
EXT_SENDERExternal Description of Bill/PAN Sender INV_EXT_SENDERCHAR40TEXT40
EXT_RECEIVERExternal Description of Bill/PAN Recipient INV_EXT_RECEIVERCHAR40TEXT40
INVOICE_TYPEType of Bill / Type of Payment Advice Note INV_INVOICE_TYPENUMC3TINV_C_INVTYPEINV_INVOICE_TYPEINV_INVOICE_TYPEINV_INVOICE_TYPE
INBOUND_TYPEType of Bill Receipt INV_INBOUND_TYPENUMC2INV_INBOUND_TYPE
DATE_OF_RECEIPTDocument Date of Receipt INV_DATE_OF_RECEIPTDATS8INV_DATE_OF_RECEIPT
INVOICE_STATUSBill/Payment Advice Note Status INV_INVOICE_STATUSNUMC2INV_INVOICE_STATUS
RECEIVER_TYPEType of Bill/PAN Recipient INV_RECEIVER_TYPENUMC2INV_RECEIVER_TYPE
INT_RECEIVERInternal Description of Bill/Payment Advice Recipient INV_INT_RECEIVERCHAR15INV_INT_SENDREC
SENDER_TYPEType of Bill/PAN Sender INV_SENDER_TYPENUMC2INV_SENDER_TYPE
INT_SENDERInternal Description of Bill/Payment Advice Note Sender INV_INT_SENDERCHAR15INV_INT_SENDREC
AUTH_GRPAuthorization group AUTHGRCHAR4Assigned to domainBRGRU
STCEGVAT Registration Number STCEGCHAR20STCEG
NR_OF_IDENTIdentification Module Number for Bill Document/PAN INV_NR_OF_IDENTNUMC8TINV_C_FM_IDENTINV_PROCESS
NR_OF_DOCSNumber of Documents for Document Header INV_NR_OF_DOCSINT410
CREATED_BYName of Person who Created the Object ERNAMCHAR12USNAM
CREATED_ONDate on Which Record Was Created ERDATDATS8DATUM
CHANGED_BYName of Person Who Changed Object AENAMCHAR12USNAM
CHANGED_ONChanged On AEDATDATS8DATUM

Key field Non-key field



How do I retrieve data from SAP table TINV_INV_HEAD using ABAP code

The following ABAP code Example will allow you to do a basic selection on TINV_INV_HEAD to SELECT all data from the table
DATA: WA_TINV_INV_HEAD TYPE TINV_INV_HEAD.

SELECT SINGLE *
FROM TINV_INV_HEAD
INTO CORRESPONDING FIELDS OF WA_TINV_INV_HEAD
WHERE...

How to access SAP table TINV_INV_HEAD

Within an ECC or HANA version of SAP you can also view further information about TINV_INV_HEAD and the data within it using relevant transactions such as

SE11 (ABAP Dictionary Maintenance)
SM30 (Maintain Table Data)
SE80 (Object Navigator)
SE16 (Data Browser).


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!