SAP COPARAM CO-OM-ABC: Function Parameters Table data and field list

COPARAM is a standard SAP Table which is used to store CO-OM-ABC: Function Parameters data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The COPARAM table consists of various fields, each holding specific information or linking keys about CO-OM-ABC: Function Parameters data available in SAP. These include NAMESPACE (Namespace), ENVIRONMNT (Valid Environments), LOG_FUNC (Logical Function Name), PARMNAME (ABAP Parameter Name for Function)... 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. .

COPARAM table Technical Details:

Delivery Class: E - Control table, SAP and customer have separate key areas
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Not classified

Text table = COPARAML


SAP COPARAM 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 COPARAM 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
NAMESPACENamespace NAMESPACECHAR10Assigned to domainNAMESPACENAMESPACE
ENVIRONMNTValid Environments ABC_CLASSCHAR3COTPLCLASSCOTPL_CLASSTPC
LOG_FUNCLogical Function Name FUNCLOGCHAR30COFUNC2FUNCNAME
PARMNAMEABAP Parameter Name for Function FPARMNAMECHAR30RS38L_PARA
PARAMTYPECO-ABC: Data Element for F4 Help Template Editor ABC_ROLLNMCHAR30Assigned to domainROLLNAME
PARAMARTCO-ABC Parameter Type: _:Normal,(O)ptional,(I)nvisible PARAMTYPECHAR1PARAMTYPE
P_DEFAULTABC: Default Value or Table Field for a Function Parameter ABC_PARDEFCHAR72ABC_FLDNAM
TABLE_FLAGIndicator: Display/Hide Table Parameters ABC_TFLAGCHAR1CHAR1
F4_FUNCTIONABAP Function Name for F4 Help F4_FUNCABAPCHAR30Assigned to domainFUNCNAME

Key field Non-key field



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

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

SELECT SINGLE *
FROM COPARAM
INTO CORRESPONDING FIELDS OF WA_COPARAM
WHERE...

How to access SAP table COPARAM

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

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