SAP COCF_CU_VARIANT Customizing for F4 Help for Variant Selection Table data and field list

COCF_CU_VARIANT is a standard SAP Table which is used to store Customizing for F4 Help for Variant Selection data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The COCF_CU_VARIANT table consists of various fields, each holding specific information or linking keys about Customizing for F4 Help for Variant Selection data available in SAP. These include OBJECT_TYPE (ID of Object Type), COUNTER (Counter for Variant F4 Help in Customizing), VARIANT_NAME (Name of a Variant for Order Information System), CREATED_BY_USER ('Created by Current User' Indicator)... 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. .

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


SAP COCF_CU_VARIANT 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 COCF_CU_VARIANT 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
OBJECT_TYPEID of Object Type COCF_POWL_OBJECT_TYPECHAR30CHAR30COCF_POWL_TYPES
COUNTERCounter for Variant F4 Help in Customizing COCF_CUST_VAR_COUNTERNUMC3NUMC3
VARIANT_NAMEName of a Variant for Order Information System COCF_VARIANT_NAMECHAR14RALDB_VARI
CREATED_BY_USER'Created by Current User' Indicator COCF_CREATED_BY_USERCHAR1CHECKBOX
ORDER_KINDOrder Categories for Data from Info System COCF_ORDER_KINDCHAR2COCF_ORDER_KIND
MP_VARIANT'Variants for Mass Processing' Indicator COCF_MP_VARIANTCHAR1CHECKBOX
IS_VARIANT'Variants for Order Information Sytem' Indicator COCF_IS_VARIANTCHAR1CHECKBOX
LIST_TYPEType of List in Order Info System COIS_LISTTYPECHAR32COIS_LISTTYPE
MP_FUNCTIONFunction to be carried out by system CO_FUNCTCHAR3CO_FUNCT

Key field Non-key field



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

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

SELECT SINGLE *
FROM COCF_CU_VARIANT
INTO CORRESPONDING FIELDS OF WA_COCF_CU_VARIANT
WHERE...

How to access SAP table COCF_CU_VARIANT

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

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