SAP FRMLS_MOD_OUT Modeling Items Screen Output Table data and field list

FRMLS_MOD_OUT is a standard SAP Structure so does not store data like a database table does. It can be used to define the fields of other actual tables or to process "Modeling Items Screen Output" Information within sap ABAP programs.

This is done by declaring abap internal tables, work areas or database tables based on this Structure. These can then be used to store and process the required data appropriately.

i.e. DATA: wa_FRMLS_MOD_OUT TYPE FRMLS_MOD_OUT.

The FRMLS_MOD_OUT table consists of various fields, each holding specific information or linking keys about Modeling Items Screen Output data available in SAP. These include MATERIAL (Material Number for Formula Explosion Using Materials), STREAM_GUID (Unique Data Record Number (GUID) for Stream), PVGUID (PVS Variant Identifier), SUBSTANCE (Substance for Formula Explosion Using Substances)... 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. .

FRMLS_MOD_OUT structure Technical Details:

Delivery Class:
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)


SAP FRMLS_MOD_OUT structure 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 FRMLS_MOD_OUT 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
SUBRECNSequential Number of Data Record ESERECNNUMC20ALPHAESDRECN
MATERIALMaterial Number for Formula Explosion Using Materials FRMLE_MOD_MATNRCHAR18Assigned to domainMATN1MATNR
STREAM_GUIDUnique Data Record Number (GUID) for Stream FRMLE_STREAM_GUIDCHAR32FRMLD_GUID
PVGUIDPVS Variant Identifier FRMLE_PVGUIDRAW16SYSUUID
SUBSTANCESubstance for Formula Explosion Using Substances FRMLE_MOD_SUBIDCHAR12SPEC1ESDSUBID
STREAMNumber of Stage That Produces Stream FRMLE_STREAM_STAGENUMNUMC4RCPD_POBNR
ITEM_DESCR_TEXTDescription of the Material, Substance, or Stream FRMLE_ITEM_DESCRCHAR132TEXT132
FRM_GUIDRMS-FRM: Object Identifier FRMLE_RECNCHAR32FRMLD_GUID
FRM_SUBIDRecipe Formula FRMLE_FRMLIDCHAR12CHRI2FRMLD_SUBID
FRM_DESCRSubstance Identifier FRMLE_IDENTCHAR132TEXT132
RCP_NAMComplete Key of an Object Version RMSAE_OBJNAMCHAR40RMSAD_VRSNAM
RCP_DESCRRecipe Description RCPE_PNODETX_RCPCHAR60TEXT60
POB_NAMProcess Element Name RCPE_PNODE_POBCHAR40BBNAMRCPD_PNAME_BB
PREF_RCP_FLGPreferred Recipe RCPE_PREF_RCPCHAR1RCPD_PREF_RCP
POB_DESCRProcess Element Description RCPE_PNODETX_POBCHAR60TEXT60
VALFROMValid-From Date FRMLE_MOD_VALFRDATS8DATUM
VALTOValid-To Date FRMLE_MOD_VALTODATS8DATUM
REALOResponsibility RCPE_REALOCHAR45CHAR45
RCP_STAGEItem Number of Recipe Stage FRMLE_STAGENUMC4RCPD_POBNR
RCP_STAGE_DESCRProcess Element Description RCPE_PNODETX_POBCHAR60TEXT60
RCP_STATUSSystem Status of a Recipe RCP_TXT30CHAR30TEXT30
ICON_INVALIDInvalid Formula Selection FRMLE_MOD_ICON_INVALIDCHAR32CHAR32
FRML_SELECTFormula Selected FRMLE_MOD_SELECTCHAR1FLAG
MAKTXMaterial Description (Short Text) MAKTXCHAR40TEXT40
IDENTFirst Substance Identifier FRMLE_IDENT_1CHAR132TEXT132
STREAM_TXTShort Description of Stream FRMLE_STREAMTXCHAR60TEXT60

Key field Non-key field



How do I retrieve data from SAP structure FRMLS_MOD_OUT using ABAP code?

As FRMLS_MOD_OUT is a database structure and not a table it does not store any data in the SAP data dictionary. The ABAP SELECT statement is therefore not appropriate and can not be performed on FRMLS_MOD_OUT as there is no data to select.

How to access SAP table FRMLS_MOD_OUT

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

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