SAP EEDMSETTLPROCPRO Settlement Procedure (Log Display) Table data and field list

EEDMSETTLPROCPRO is a standard SAP Table which is used to store Settlement Procedure (Log Display) data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The EEDMSETTLPROCPRO table consists of various fields, each holding specific information or linking keys about Settlement Procedure (Log Display) data available in SAP. These include SETTLPROCESS (Settlement Procedure), TREE_TYPE (Representation of Navigation Tree in Log), TREE_DESCRIPTION (Title of Navigation Tree in Log), COLOR_PROBCLASS1 (Color of Problem Class 1)... 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. .

EEDMSETTLPROCPRO table Technical Details:

Delivery Class: C - Customising table, maintenance only by cust
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)

Text table = EEDMSETTLPROCPRT


SAP EEDMSETTLPROCPRO 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 EEDMSETTLPROCPRO 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
MANDTClient MANDTCLNT3T000MANDT
SETTLPROCESSSettlement Procedure E_EDMSETTLPROCESSCHAR10EEDMSETTLPROCE_EDMSETTLPROCESSEEDMSETTLPROC_AKTIV
TREE_TYPERepresentation of Navigation Tree in Log EEDMPROTTREETYPENUMC2EEDMPROTTREETYPE
TREE_DESCRIPTIONTitle of Navigation Tree in Log EEDMPROTTREEDESCRIPTIONNUMC2EEDMPROTTREEDESCRIPTION
COLOR_PROBCLASS1Color of Problem Class 1 EDMSETTLBALCOLCODE1CHAR1CHAR1
COLOR_PROBCLASS2Color of Problem Class 2 EDMSETTLBALCOLCODE2CHAR1CHAR1
COLOR_PROBCLASS3Color of Problem Class 3 EDMSETTLBALCOLCODE3CHAR1CHAR1
COLOR_PROBCLASS4Color of Problem Class 4 EDMSETTLBALCOLCODE4CHAR1CHAR1
SHOW_ALLApplication Log: Display all messagee immediately BALSHOWALLCHAR1BOOLEAN
MESS_MARKApplicationn Log: Messages in list selectable BALMSGMRKCHAR1BOOLEAN
CWIDTH_OPTApplication Log: Optimize message list column width BAL_CWOCHAR1BOOLEAN
HEAD_SIZEApplication Log: Tree: Hierarchy column width BALHEADSIZINT410
TREE_SIZEApplication Log: Tree: Size of Tree Control in CHAR BALTREESIZINT410
TREE_ONTOPApplication Log: Tree: Display above messages BALTRONTOPCHAR1BOOLEAN
EXP_LEVELApplication Log: Tree: Expand to level BALEXPLVLINT410
NOT_EMPTYApplication Log: Do not show empty branches BALNOEMPTYCHAR1BOOLEAN
MSGOUTPUTLENALV control: Column width in characters LVC_OUTLENNUMC6DDLENG
DISPCONTEXT1Display Context Data 1 in Log EEDMSETTLDISPCONTEXT1CHAR1KENNZX
DISPCONTEXT2Display Context Data 2 in Log EEDMSETTLDISPCONTEXT2CHAR1KENNZX
DISPCONTEXT3Display Context Data 3 in Log EEDMSETTLDISPCONTEXT3CHAR1KENNZX
DISPCONTEXT4Display Context Data 4 in Log EEDMSETTLDISPCONTEXT4CHAR1KENNZX
DISPPROBCLASSDisplay Problem Class in Log EEDMDISPPROBCLASSCHAR1KENNZX

Key field Non-key field



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

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

SELECT SINGLE *
FROM EEDMSETTLPROCPRO
INTO CORRESPONDING FIELDS OF WA_EEDMSETTLPROCPRO
WHERE...

How to access SAP table EEDMSETTLPROCPRO

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

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