SAP MSAM_CFUNLOCPRF Selection Settings for Master Data - Functional Location Table data and field list

MSAM_CFUNLOCPRF is a standard SAP Table which is used to store Selection Settings for Master Data - Functional Location data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The MSAM_CFUNLOCPRF table consists of various fields, each holding specific information or linking keys about Selection Settings for Master Data - Functional Location data available in SAP. These include FLOC_SEL_VARIANT (Selection Variant for Functional Locations Selection), FLOC_PARTNER (Select Partner Data), FLOC_CONTRACTS (Select Contract Data), FLOC_INST_EQUI (Select Installed Equipment)... 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. .

MSAM_CFUNLOCPRF 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)


SAP MSAM_CFUNLOCPRF 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 MSAM_CFUNLOCPRF 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
FLOC_SEL_VARIANTSelection Variant for Functional Locations Selection MSAM_MO_FUNCLOC_SEL_VARIANTCHAR14RALDB_VARI
FLOC_PARTNERSelect Partner Data ALM_ME_PARTNER_DATA_SELECTCHAR1FLAG
FLOC_CONTRACTSSelect Contract Data ALM_ME_CONTRACT_DATA_SELECTCHAR1FLAG
FLOC_INST_EQUISelect Installed Equipment ALM_ME_INST_EQUI_SELECTCHAR1FLAG
FLOC_NHISTSelect Notification History ALM_ME_NOTIF_HISTORY_SELECTCHAR1FLAG
FLOC_NHIST_DAYSNumber of Days from History ALM_ME_HISTORY_DAYSNUMC4NUMC4
FLOC_NHIST_NUMNumber of Documents from History ALM_ME_HISTORY_NUMNUMC4NUMC04
FLOC_OHISTSelect Order History ALM_ME_ORDER_HISTORY_SELECTCHAR1FLAG
FLOC_OHIST_DAYSNumber of Days from History ALM_ME_HISTORY_DAYSNUMC4NUMC4
FLOC_OHIST_NUMNumber of Documents from History ALM_ME_HISTORY_NUMNUMC4NUMC04
FLOC_MEASUREMENTSelect Measuring Points ALM_ME_MEASUREMENT_SELECTCHAR1FLAG
FLOC_WARRANTYSelect Warranties ALM_ME_WARRANTY_SELECTCHAR1FLAG
FLOC_CLASSRead Classification of Functional Location ALM_ME_FLOC_CLASSESCHAR1FLAG
FLO_COMP_DWNLOADEnable complete download MSAM_COMPLETE_DOWNLOADCHAR1FLAG
FLO_ENBLE_ATTACHEnable attachments on the objects MSAM_ENABLE_ATTACHMENTCHAR1FLAG
FLO_MAX_ATT_SIZEMaximum Attachment Size in KBs MSAM_MAX_ATTACHMENT_SIZENUMC4NUM04
FLO_NO_DAYS_ATTNumber of Days from History ALM_ME_HISTORY_DAYSNUMC4NUMC4
FLO_NO_DOCS_ATTNumber of Documents from History ALM_ME_HISTORY_NUMNUMC4NUMC04

Key field Non-key field



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

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

SELECT SINGLE *
FROM MSAM_CFUNLOCPRF
INTO CORRESPONDING FIELDS OF WA_MSAM_CFUNLOCPRF
WHERE...

How to access SAP table MSAM_CFUNLOCPRF

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

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