SAP FILTER_PS_LOG Filter for PS EHP4 Table data and field list

FILTER_PS_LOG is a standard SAP Table which is used to store Filter for PS EHP4 data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The FILTER_PS_LOG table consists of various fields, each holding specific information or linking keys about Filter for PS EHP4 data available in SAP. These include ALVNAME (ALV Name), FILTER_NUM (Filter Number), FIELDNAME (ALV control: Field name of internal table field), TABNAME (ALV control: Reference table name for internal table field)... 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. .

FILTER_PS_LOG 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: Can be enhanced (character-type or numeric)


SAP FILTER_PS_LOG 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 FILTER_PS_LOG 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 MANDTCLNT3Assigned to domainMANDT
ALVNAMEALV Name ALVNAMECHAR10ALVNAME
FILTER_NUMFilter Number FILTER_NUMINT13FILTER_NUM
FIELDNAMEALV control: Field name of internal table field LVC_FNAMECHAR30CHAR30
TABNAMEALV control: Reference table name for internal table field LVC_RTNAMECHAR30CHAR30
SELTEXTALV control: Column identifier for dialog functions LVC_TXTCHAR40TEXT40
VALUFText (80 Characters) TEXT80CHAR80TEXT80UEB
VALUTText (80 Characters) TEXT80CHAR80TEXT80UEB
SIGN_ICONNot More Closely Defined Area, Possibly Used for Patchlevels CHAR4CHAR4CHAR4
STYPESingle-Character Indicator CHAR1CHAR1CHAR1
DECIMALSNumber of Decimal Places DECIMALSNUMC6DDLENG
INTLENInternal Length in Bytes INTLENNUMC6DDLENG
CONVEXITConversion Routine CONVEXITCHAR5CONVEXIT
EDIT_MASKALV control: EditMask for output LVC_EDTMSKCHAR60CHAR60
LOWERCASELowercase letters allowed/not allowed LOWERCASECHAR1AS4FLAG
INTTYPEABAP data type (C,D,N,...) INTTYPECHAR1INTTYPE
DATATYPEData Type in ABAP Dictionary DATATYPE_DCHAR4DTYPEDATATYPE
EXCEPTION1Single-Character Indicator CHAR1CHAR1CHAR1
NO_SIGNALV Control: Suppress Signs for Output LVC_NOSIGNCHAR1XFLAG
OR1Single-Character Indicator CHAR1CHAR1CHAR1
ORDER1Sequence ORDERNUMC2NUM2
REF_FIELDALV control: Reference field name for internal table field LVC_RFNAMECHAR30CHAR30
REF_TABLEALV control: Reference table name for internal table field LVC_RTNAMECHAR30CHAR30
C_FIELDALV control: Field name of internal table field LVC_FNAMECHAR30CHAR30
C_TABLVC tab name LVC_TNAMECHAR30
C_VALUER/2 table CHAR5CHAR5CHAR5
FLG_CQSingle-Character Indicator CHAR1CHAR1CHAR1
LOWText (80 Characters) TEXT80CHAR80TEXT80UEB
HIGHText (80 Characters) TEXT80CHAR80TEXT80UEB

Key field Non-key field



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

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

SELECT SINGLE *
FROM FILTER_PS_LOG
INTO CORRESPONDING FIELDS OF WA_FILTER_PS_LOG
WHERE...

How to access SAP table FILTER_PS_LOG

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

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