SAP FRMLC_VIEWPARA RMS22: Formula View Parameters Table data and field list

FRMLC_VIEWPARA is a standard SAP Table which is used to store RMS22: Formula View Parameters data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The FRMLC_VIEWPARA table consists of various fields, each holding specific information or linking keys about RMS22: Formula View Parameters data available in SAP. These include FRML_LEVEL (Formula View), EXPL_SCOPE (Explosion Scope), MAINT_RSTD (Formula View Can Be Edited for Standard Reactions), MAINT_RNSTD (Formula View Can Be Edited f. Formula-Specific Reactions)... 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. .

FRMLC_VIEWPARA table Technical Details:

Delivery Class: G - Customising table which is protected against SAP Update
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)


SAP FRMLC_VIEWPARA 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 FRMLC_VIEWPARA 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
FRML_LEVELFormula View FRMLE_LEVELCHAR10FRMLC01CHAR10
EXPL_SCOPEExplosion Scope FRMLE_EXPL_SCOPECHAR10FRMLC_EXPLPARAFRMLD_EXPL_SCOPE
MAINT_RSTDFormula View Can Be Edited for Standard Reactions FRMLE_MAINT_RSTD_FLGCHAR1FRMLD_FLAG
MAINT_RNSTDFormula View Can Be Edited f. Formula-Specific Reactions FRMLE_MAINT_RNSTD_FLGCHAR1FRMLD_FLAG
MAINT_NOREACFormula View Can Be Edited for Formulas Without Reaction FRMLE_MAINT_NOREAC_FLGCHAR1FRMLD_FLAG
IDLIDIdentification Listing ESEIDLIDCHAR10TCG26ESDIDLID
RVLIDValidity Area for Reading and Writing EHS Data FRMLE_RVLID_VIEWCHAR10TCG91ESDRVLID
VACLIDValue Assignment Rating for Reading and Writing EHS Data FRMLE_VACLID_VIEWCHAR10TCG86ESDVACLID

Key field Non-key field



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

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

SELECT SINGLE *
FROM FRMLC_VIEWPARA
INTO CORRESPONDING FIELDS OF WA_FRMLC_VIEWPARA
WHERE...

How to access SAP table FRMLC_VIEWPARA

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

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