LRQSI SAP (Request item) Table details

Dictionary Type: Table
Description: Request item




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




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

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

The LRQSI table consists of various fields, each holding specific information or linking keys about Request item data available in SAP. These include LOCAT (Site), REQST (Request Number), RQITM (Request Item Identifier), PRSMD (Request Item Processing).. 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 LRQSI 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
LOCATSite LTRM_LOCATCHAR4LLOCTLTRM_LOCATLTRM_LOCATH_LTRM_LOCAT
REQSTRequest Number LTRQ_REQSTNUMC10LRQSHNUMC10
RQITMRequest Item Identifier LTIF_RQITMCHAR22SYSUUID_22
PRSMDRequest Item Processing LTIF_PRSMDCHAR1LTIF_PRSMD
GRPRFRequest Item Grouping for Synchronization and Execution LTIF_GRPRFCHAR22SYSUUID_22
RPRNTRequest Item Grouping for Route LTIF_RPRNTCHAR22SYSUUID_22
MIXHUYES/NO Field LTRQ_YNFLGCHAR1XFELD
RIRFLRequest Item Reference Line LTRQ_RQITM_REFNUMC10LTRQ_RQITM_REF
RIGRPRequest Work Unit LTRQ_UWGRPNUMC3NUMC3
RQITYRequest Type LTIF_RQTYPCHAR2LTRM_RQTYP
RQACTActivity LTIF_ACTVTCHAR2Assigned to domainLTRM_ACTIV
RISTSRequest Status LTRQ_STS_CODECHAR2LTRQ_STSCD
.INCLU-SRC 0
RZONESRCZone LTIF_ZONECHAR10LTRM_ZONE
BINCXSRCCoordinates LTIF_COORDQUAN10(3) LTRM_COORD
BINCYSRCCoordinates LTIF_COORDQUAN10(3) LTRM_COORD
BINCZSRCCoordinates LTIF_COORDQUAN10(3) LTRM_COORD
RNODESRCNode for Creation of Request Without Reference LTIF_NODECHAR15LTRM_NODE
.INCLU-DST 0
RZONEDSTZone LTIF_ZONECHAR10LTRM_ZONE
BINCXDSTCoordinates LTIF_COORDQUAN10(3) LTRM_COORD
BINCYDSTCoordinates LTIF_COORDQUAN10(3) LTRM_COORD
BINCZDSTCoordinates LTIF_COORDQUAN10(3) LTRM_COORD
RNODEDSTNode for Creation of Request Without Reference LTIF_NODECHAR15LTRM_NODE
.INCLU-SRC 0
HUNUMSRCHandling Unit LTRM_HUNUMCHAR20ALPHALTRM_HUNUM
HUTYPSRCHandling Unit Type LTRM_HUTYPCHAR3LTRM_HUTYP
.INCLU-DST 0
HUNUMDSTHandling Unit LTRM_HUNUMCHAR20ALPHALTRM_HUNUM
HUTYPDSTHandling Unit Type LTRM_HUTYPCHAR3LTRM_HUTYP
.INCLU--AP 0
LTRM_DUMMYDummy Field for User-Specific Data LTRM_DUMMYCHAR1DUMMY

Key field Non-key field



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

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

SELECT SINGLE *
FROM LRQSI
INTO CORRESPONDING FIELDS OF WA_LRQSI
WHERE...

How to access SAP table LRQSI

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