SAP PSJ_D_STEP PSJ: Journal Entries Table data and field list

PSJ_D_STEP is a standard SAP Table which is used to store PSJ: Journal Entries data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The PSJ_D_STEP table consists of various fields, each holding specific information or linking keys about PSJ: Journal Entries data available in SAP. These include JOURNAL_ENTRY_ID (Log Entry ID), PROCESS_ID (Business Process ID), STEP_ID (Message Step/Process Step ID), ACTION (Activity 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. .

PSJ_D_STEP 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: Cannot Be Enhanced


SAP PSJ_D_STEP 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 PSJ_D_STEP 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 MANDTCLNT3Assigned to domainMANDT
JOURNAL_ENTRY_IDLog Entry ID PSJ_JOURNAL_ENTRY_IDCHAR40
PROCESS_IDBusiness Process ID PSJ_PROCESS_IDCHAR32
STEP_IDMessage Step/Process Step ID PSJ_STEP_IDCHAR35
ACTIONActivity Status PSJ_ACTIONCHAR1PSJ_ACTION
DIRECTIONMessage Direction for Log Entry PSJ_ENTRY_DIRECTIONCHAR1PSJ_ENTRY_DIRECTION
STEP_NAMEProcess Step Description PSJ_STEP_NAMECHAR255TEXT255
STEP_TYPEActivity Category PSJ_STEP_TYPECHAR1PSJ_STEP_TYPE
PARENT_ENTRY_IDLog Entry ID PSJ_JOURNAL_ENTRY_IDCHAR40
PARENT_STEP_IDMessage Step/Process Step ID PSJ_STEP_IDCHAR35
TECH_REF_IDTechnical Reference ID PSJ_TECHNICAL_REFERENCE_IDCHAR100
SYSTEM_IDSystem ID PSJ_SYSTEM_IDCHAR60TEXT60
TIMESTAMPUTC Time Stamp in Long Form (YYYYMMDDhhmmssmmmuuun) TIMESTAMPLDEC21(7) TZNTSTMPL
USERNAMEUser Name SYUNAMECHAR12SYCHAR12

Key field Non-key field



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

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

SELECT SINGLE *
FROM PSJ_D_STEP
INTO CORRESPONDING FIELDS OF WA_PSJ_D_STEP
WHERE...

How to access SAP table PSJ_D_STEP

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

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