OIGSI SAP (Shipment Item) Table details

Dictionary Type: Table
Description: Shipment Item




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




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

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

The OIGSI table consists of various fields, each holding specific information or linking keys about Shipment Item data available in SAP. These include SHNUMBER (TD shipment number), SHITEM (Shipment item), DOC_TYP (SD document category), DOC_NUMBER (TD document number).. 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)


SAP OIGSI 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
CLIENTClient MANDTCLNT3T000MANDT
SHNUMBERTD shipment number OIG_SHNUMCHAR10OIGSALPHAOIG_SHNUMOIS
SHITEMShipment item OIG_SHITMNUMC4OIG_SHITM
DOC_TYPSD document category VBTYPCHAR1VBTYP
DOC_NUMBERTD document number OIG_DOCNRCHAR10ALPHAOIG_DOCNR
VGTYPSD document category VBTYPCHAR1VBTYP
CRE_NAMEName of Person who Created the Object ERNAMCHAR12USNAM
CRE_DATEDate on Which Record Was Created ERDATDATS8DATUM
CRE_TIMEEntry time ERZETTIMS6UZEIT
CHA_NAMEName of Person Who Changed Object AENAMCHAR12USNAM
CHA_DATEChanged On AEDATDATS8DATUM
CHA_TIMETime last change was made AEZETTIMS6UZEIT
OIG_SSTSFPTD Shipment Status (Functional) OIG_SSTSFCHAR1OIG_SSTSF
DOC_SEQTD document sequence field OIG_DELSEQCHAR4ALPHAOIG_DELSEQ
LOAD_INDITD shipment item load indicator OIG_LDINDCHAR1OIG_LDIND
DISCH_INDITD shipment item discharge indicator OIG_DCINDCHAR1OIG_DCIND
LONGTEXTTD Longtext indicator OIG_LTXTCHAR1OIG_EVLT
TCODETransaction Code TCODECHAR20Assigned to domainTCODETCD
OIG_GLPODGoods issue at loading, proof of delivery (POD) OIG_GLPODCHAR1OIG_GLPOD
CONT_DGIndicator: Section contains dangerous goods ADGE_SCDGCHAR1X

Key field Non-key field



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

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

SELECT SINGLE *
FROM OIGSI
INTO CORRESPONDING FIELDS OF WA_OIGSI
WHERE...

How to access SAP table OIGSI

Within an ECC or HANA version of SAP you can also view further information about OIGSI 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!