TSP01 SAP (Spool Requests) Table details

Dictionary Type: Table
Description: Spool Requests




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




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

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

The TSP01 table consists of various fields, each holding specific information or linking keys about Spool Requests data available in SAP. These include RQCLIENT (Client for which object was generated), RQ0NAME (Spool request: Name), RQ1NAME (Spool request: Suffix 1), RQ2NAME (Spool request: Suffix 2).. 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: L - Table for storing temporary data, is delivered empty
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Not classified


SAP TSP01 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
RQIDENTSpool request number RSPOIDINT410RSPOID
RQCLIENTClient for which object was generated RSTSCLIENTCLNT3T000MANDT
RQ0NAMESpool request: Name RSPO0NAMECHAR6CHAR6
RQ1NAMESpool request: Suffix 1 RSPO1NAMECHAR4CHAR4
RQ2NAMESpool request: Suffix 2 RSPO2NAMECHAR12CHAR12
RQOWNERUser name RSPOUSERCHAR12USERNAME
RQCMODEExternal mode of an SAP dialog SAPMODECHAR1CHAR1
RQFINALSpool request completed RSPOFINALCHAR1CHAR1
RQCRETIMETime a spool request was created RSPOCRTIMECHAR16RSLGTIME
RQDELTIMESpool Request Deleted At RSPODLTIMECHAR16RSLGTIME
RQREARULETemSe: Read protection rule number RSTSREARULINT25SAPUSHORT
RQDELRULETemSe: Number of delete protection rule RSTSDELRULINT25SAPUSHORT
RQAPPRULETemSe: Number of add protection rule RSTSAPPRULINT25SAPUSHORT
RQMODRULETemSe: Number of change protection rule RSTSMODRULINT25SAPUSHORT
RQ1DISPOPrint immediately or later RSPO1DISPOCHAR1CHAR1
RQ2DISPODelete spool request automatically RSPO2DISPOCHAR1CHAR1
RQ3DISPOSpool option 3: Automatic re-routing RSPO3DISPOCHAR1CHAR1
RQDESTSpool: Output device RSPOPNAMECHAR4TSP03SPDEVRSPOPNAME
RQCOPIESNumber of copies RSPOCOPIESINT13RSPOCNT1
RQPRIOSpool: Spool or print request priority RSPOPRIOINT13RSPOPRIO
RQPAPERSpool: Format type RSPOPAPFAMCHAR16TSP1DRSPOPAPER
RQPJREQSpool: No. output requests for spool request total RSPOPJTOTLINT25RSPOPJCNT
RQPJDONENumber of output requests processed RSPOPJDONEINT25RSPOPJCNT
RQPJSERRSpool: Number of output requests with problems RSPOPJSERRINT25RSPOPJCNT
RQPJHERRSpool: Number of output requests with errors (no printout) RSPOPJHERRINT25RSPOPJCNT
RQWRITERTemSe: General counter RSTSCNTINT25SAPUSHORT
RQERRORSpool: Error status RSPOERRORCHAR1CHAR1
RQO1NAMETemSe object name RSTSONAMECHAR20CHAR20
RQO1PARTTemSe: Number of the part of a TemSe object RSTSPARTINT25SAPUSHORT
RQO1CLIEClient for which object was generated RSTSCLIENTCLNT3T000MANDT
RQTITLETitle of a spool request RSPOTITLECHAR68TEXT68
RQDELETEDDelete flag for spool requests RSPODELFLGCHAR1CHAR1
RQSAPTITLEPrint SAP cover page RSPOSAPTTLCHAR1Assigned to domainRSPOSAPTTL
RQUNXTITLEPrint operating system cover page RSPOUNXTTLCHAR1RSPOUNXTTL
RQRECEIVERSpool: Recipient of spool request RSPORECEIVCHAR12TEXT12
RQDIVISIONDepartment RSPODIVISICHAR12TEXT12
RQARCHTYPEArchive type (internal, not on screen) RSPOARCHTYCHAR1RSPOARCHTY
RQARCHDESTArchiving device RSPOARCHDECHAR4TSP03SPDEVRSPOPNAME
RQARCHSTATSpool: Archive status of spool request RSPOARCHSTCHAR1RSPOARCHST
RQAUTHValue for authorization check RSPOAUTHCHAR12RSPOAUTH
RQISPROTOKFlag: Whether this request is a log for another request RSPOISPROTCHAR1CHAR1
RQTELELANCountry Key LAND1CHAR3Assigned to domainLAND1LND
RQTELENUMTelecommunications partner SKTELNRCHAR30TDTELENUM
RQTELENUMETelecommunications partner SKTELNRCHAR30TDTELENUM
RQMODTIMELast time a spool request was changed RSPOMODTIMCHAR16RSLGTIME
RQDOCTYPESpool: document type RSPODOCTYPCHAR6CHAR6
RQPOSNAMESpool: Long name of printers for host spooler RSPOPRNAMECHAR50TEXT50

Key field Non-key field



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

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

SELECT SINGLE *
FROM TSP01
INTO CORRESPONDING FIELDS OF WA_TSP01
WHERE...

How to access SAP table TSP01

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