SAP CFX_UD_BUTTON User-Defined Buttons in cFolders Interfaces Table data and field list

CFX_UD_BUTTON is a standard SAP Table which is used to store User-Defined Buttons in cFolders Interfaces data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The CFX_UD_BUTTON table consists of various fields, each holding specific information or linking keys about User-Defined Buttons in cFolders Interfaces data available in SAP. These include ID (ID of User-Defined Button), NAME_ALIAS (Text Alias for User-Defined Button), NAME_DEFAULT (Name of a User-Defined Button), TOOLTIP_ALIAS (Text Alias of Quick Info for User-Defined Button)... 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. .

CFX_UD_BUTTON 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 CFX_UD_BUTTON 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 CFX_UD_BUTTON 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
CLIENTClient MANDTCLNT3Assigned to domainMANDT
IDID of User-Defined Button CFX_UD_T_BUTTON_IDCHAR30CFX_UD_T_BUTTON_ID
NAME_ALIASText Alias for User-Defined Button CFX_UD_T_BUTTON_NAME_ALIASCHAR255CFX_T_TEXT_ALIAS
NAME_DEFAULTName of a User-Defined Button CFX_UD_T_BUTTON_NAME_DEFAULTCHAR30CFX_UD_T_BUTTON_NAME_DEFAULT
TOOLTIP_ALIASText Alias of Quick Info for User-Defined Button CFX_UD_T_BUTTON_TOOLTIP_ALIASCHAR255CFX_T_TEXT_ALIAS
TOOLTIP_DEFAULTQuick Info for a User-Defined Button CFX_UD_T_BUTTON_TOOLTIP_DEFLTCHAR255CFX_UD_T_BUTTON_TOOLTIP_DEFLT
OBJECT_TYPE_IDID of Object Type CFX_UD_T_BUTTON_OBJECT_TYPE_IDCHAR255CFX_T_EXTERNAL_ID
OBJECT_TYPE_NSNamespace of Object Type CFX_UD_T_BUTTON_OBJECT_TYPE_NSCHAR255CFX_T_EXTERNAL_NAMESPACE
LOCATIONPlace at which the Pushbutton Is Displayed CFX_UD_T_BUTTON_LOCATIONCHAR30CFX_UD_T_BUTTON_LOCATION

Key field Non-key field



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

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

SELECT SINGLE *
FROM CFX_UD_BUTTON
INTO CORRESPONDING FIELDS OF WA_CFX_UD_BUTTON
WHERE...

How to access SAP table CFX_UD_BUTTON

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

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