EKPB SAP ('Material Provided' Item in Purchasing Document) Table details

Dictionary Type: Table
Description: 'Material Provided' Item in Purchasing Document




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




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

EKPB is a standard SAP Table which is used to store 'Material Provided' Item in Purchasing Document data and is available within R/3 SAP systems depending on the version and release level.

The EKPB table consists of various fields, each holding specific information or linking keys about 'Material Provided' Item in Purchasing Document data available in SAP. These include EBELN (Purchasing Document Number), EBELP (Item Number of Purchasing Document), ZEKPB (Sequential No. of 'Material Provided' Item in Purch. Doc.), LOEKZ (Deletion Indicator in Purchasing Document).. 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: Not classified


SAP EKPB 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 MANDTCLNT3T000MANDT
EBELNPurchasing Document Number EBELNCHAR10EKKOALPHAEBELNBESMEKK_C
EBELPItem Number of Purchasing Document EBELPNUMC5EKPOEBELPBSP
ZEKPBSequential No. of 'Material Provided' Item in Purch. Doc. DZEKPBNUMC4NUM04
LOEKZDeletion Indicator in Purchasing Document ELOEKCHAR1ELOEK
STATUIndicator: Firm or Trade-Off Zone ESTATCHAR1ESTAT
AEDATDate on Which Record Was Created ERDATDATS8DATUM
TXZ01Short Text TXZ01CHAR40TEXT40
MATNRMaterial Number MATNRCHAR18MARAMATN1MATNRMATS_MAT1
WERKSPlant EWERKCHAR4T001WWERKSWRK
LGORTStorage Location LGORT_DCHAR4T001LLGORTLAG
MENGEConfirmed Quantity BMENGQUAN13(3) MENG13
MEINSBase Unit of Measure MEINSUNIT3T006CUNITMEINS
LAGMEQuantity in Stockkeeping Unit MB_MEINSUNIT3T006CUNITMEINS
UMAUZNumerator for Conversion of Order Unit to Base Unit UMBSZDEC5UMBSZ
UMAUNDenominator for Conversion of Order Unit to Base Unit UMBSNDEC5UMBSN
FMENGQuantity is Fixed FMENGCHAR1XFELD
FRGDTPurchase Requisition Release Date FRGDTDATS8DATUM
LVRMGQuantity of 'material provided' accounted for LVRMGQUAN13(3) MENG13
LVRWRValue of materials provided accounted for LVRWRCURR13(2) WERT7
LVLFMIssued quantity LVLFMQUAN13(3) MENG13

Key field Non-key field



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

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

SELECT SINGLE *
FROM EKPB
INTO CORRESPONDING FIELDS OF WA_EKPB
WHERE...

How to access SAP table EKPB

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