SAP REQLINE Administrative Line Data: Requirement Coverage Request Table data and field list

REQLINE is a standard SAP Table which is used to store Administrative Line Data: Requirement Coverage Request data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The REQLINE table consists of various fields, each holding specific information or linking keys about Administrative Line Data: Requirement Coverage Request data available in SAP. These include REQNO (Requirement Coverage Request Document Number), REQLLINE (Administrative line number of requirement coverage request), REQSLINE (Temporary Item Number of Requirement Coverage Request), STATUS (Requirement coverage request line status)... 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. .

REQLINE table Technical Details:

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 REQLINE table fields - Full list of fields found in SAP data dictionary

Looking for S/4HANA specific information? Click here to explore the details, fields and extensibility available for this table in the SAP S/4HANA version of the REQLINE table. Also check whether the table still exists or has been transformed into a CDS view as part of the HANA simplifications.
Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
CLIENTClient EC_CLIENTCLNT3Assigned to domainMANDT
REQNORequirement Coverage Request Document Number EC_REQNOCHAR10Assigned to domainALPHAEC_REQNO
REQLLINEAdministrative line number of requirement coverage request REQLLINENUMC10NUM10
REQSLINETemporary Item Number of Requirement Coverage Request REQSLINENUMC10NUM10
STATUSRequirement coverage request line status EC_STATUSCHAR1EC_STATUS
CATALOGIDCatalog ID from which the line was selected CATALOGCHAR20BBP_WS_SERVICE_ID
QUANTITYRequirement coverage request quantity EC_QUANTITYQUAN13(3) MENG13
UNITUnit of measure for requirement coverage request EC_UNITUNIT3Assigned to domainCUNITMEINS
SHORT_TEXTShort Text TXZ01CHAR40TEXT40
MATERIALMaterial Number MATNRCHAR18Assigned to domainMATN1MATNRMATS_MAT1
SERVICEActivity Number ASNUMCHAR18Assigned to domainALPHAASNUMASN
FF_QUANTITYFulfilled quantity FF_QUANTITYQUAN13(3) MENG13
INV_QUANTITYInvoiced Quantity INV_QUANTITYQUAN13(3) MENG13
LIMITOverall Limit BBP_BSUMLIMITDEC23(4) BAPICURR
CURRENCYCurrency Key WAERSCUKY5Assigned to domainWAERSFWS
NO_LIMITNo Limit BBP_NO_LIMITCHAR1CHAR01
ACT_VALUEValue of fulfilled quantity - current value ACT_VALUECURR13(2) WERT7
INV_VALUECalculated Value INV_VALUECURR13(2) WERT7
NOMOREGR'Delivery Completed' Indicator BBP_ELIKZCHAR1XFELD
DELETEINDR3Deletion Indicator in Purchasing Document ELOEKCHAR1ELOEK
DELETEINDDeletion Indicator in Requirement Coverage Request Line DELETEINDCHAR1XFELD
LINE_TYPELine category LITYPENUMC1LITYPE
CURRENCY_R3Currency Key WAERSCUKY5Assigned to domainWAERSFWS
IN_TRASHCANThis line of the shopping cart is in the trash IN_TRASHCANCHAR1XFELD
ITEM_REJECTEDItem Rejected ITEM_REJECTEDCHAR1XFELD
LOGICAL_SYSTEMLogical system LOGSYSCHAR10Assigned to domainALPHALOGSYS
PRODUCTInternal Unique ID of Product COMT_PRODUCT_GUIDRAW16SYSUUID
REJECT_WIWork item ID SWW_WIIDNUMC12Assigned to domainSWW_WIIDWID
LOGSYS_FILogical system LOGSYSCHAR10Assigned to domainALPHALOGSYS
PO_VALUEValue of fulfilled quantity - current value ACT_VALUECURR13(2) WERT7
PROC_GROUPResponsible Purchasing Group BBP_PROC_GROUPCHAR14HROBJEC_14BBP_PROC_GROUP
PROC_ORGResponsible Purchasing Organization BBP_PROC_ORGCHAR14HROBJEC_14BBP_PROC_ORG
CATALOGITEMCatalog Item (Unique Key) CATALOGITEMCHAR40CATALOGITEM
EXT_QUOTE_IDNumber of an External RFx Response BBP_EXT_QUOTE_IDCHAR35
EXT_QUOTE_ITEMItem of an External RFx Response BBP_EXT_QUOTE_ITEMNUMC10
CATEGORYCategory GUID COMT_CATEGORY_GUIDRAW16SYSUUID
SUBTYPESpecification Purchase Item (e.g. Direct Material/Hierarch.) BBP_I_SUBTYPECHAR2BBP_I_SUBTYPE

Key field Non-key field



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

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

SELECT SINGLE *
FROM REQLINE
INTO CORRESPONDING FIELDS OF WA_REQLINE
WHERE...

How to access SAP table REQLINE

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

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