SAP RSPLS_SEQUENCE_S Planning Steps Table data and field list

RSPLS_SEQUENCE_S is a standard SAP Table which is used to store Planning Steps data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The RSPLS_SEQUENCE_S table consists of various fields, each holding specific information or linking keys about Planning Steps data available in SAP. These include OBJVERS (Object version), STEPID (Step in Planning Sequence), STEPTYPE (Type of Planning Step), AGGRLEVEL (Planning: Aggregation Level)... 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. .

RSPLS_SEQUENCE_S table Technical Details:

Delivery Class: E - Control table, SAP and customer have separate key areas
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced


SAP RSPLS_SEQUENCE_S 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 RSPLS_SEQUENCE_S 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
SEQNMName (ID) of Planning Sequence RSPLS_SEQNMCHAR20RSPLS_SEQUENCERSPLS_SEQNM
OBJVERSObject version RSOBJVERSCHAR1RSOBJVERS
STEPIDStep in Planning Sequence RSPLS_STEPIDINT410
STEPTYPEType of Planning Step RSPLS_STEPTYPECHAR1RSPLS_STEPTYPE
AGGRLEVELPlanning: Aggregation Level RSPLS_AGGRLEVELCHAR30RSPLS_AGGRLEVELRSPLS_AGGRLEVEL
SELOBJName (ID) of a reporting component RSZCOMPIDCHAR30Assigned to domainRSZCOMPIDRSZCOMPID
SRVNMName of Planning Function RSPLF_SRVNMCHAR20RSPLF_SRVNM
QUERYNMName (ID) of a reporting component RSZCOMPIDCHAR30Assigned to domainRSZCOMPIDRSZCOMPID

Key field Non-key field



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

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

SELECT SINGLE *
FROM RSPLS_SEQUENCE_S
INTO CORRESPONDING FIELDS OF WA_RSPLS_SEQUENCE_S
WHERE...

How to access SAP table RSPLS_SEQUENCE_S

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

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