LLGRI SAP (Request item log) Table details

Dictionary Type: Table
Description: Request item log




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




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

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

The LLGRI table consists of various fields, each holding specific information or linking keys about Request item log data available in SAP. These include LOCAT (Site), REQST (Request Number), RQITM (Request Item Identifier), TSTMP (Time of Change in Task 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. .

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 LLGRI 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
TSTMPTime of Change in Task Status LTSK_STATUS_TSTMPDEC15TSTRMLTRM_TSTMP
MTHODTRM Service LTRM_SERVICECHAR2CHAR2
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 LLGRI using ABAP code

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

SELECT SINGLE *
FROM LLGRI
INTO CORRESPONDING FIELDS OF WA_LLGRI
WHERE...

How to access SAP table LLGRI

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