SAP CYMP_OUTPUT_FIELDS Display fields for work distribution at person level Table data and field list

CYMP_OUTPUT_FIELDS 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 "Display fields for work distribution at person level" 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_CYMP_OUTPUT_FIELDS TYPE CYMP_OUTPUT_FIELDS.

The CYMP_OUTPUT_FIELDS table consists of various fields, each holding specific information or linking keys about Display fields for work distribution at person level data available in SAP. These include OBJECT_WVIEW (Object in work center view: Personnel resource/activity), ARBEI_OVERALL (Total work to be distributed from this operation), ARBEI_ALLOC (Work not yet distributed or already distributed work), UNIT_ARBEI_ALLOC (Unit for work)... 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. .

CYMP_OUTPUT_FIELDS structure Technical Details:

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


SAP CYMP_OUTPUT_FIELDS 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 CYMP_OUTPUT_FIELDS 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
OBJECT_PVIEWObject in project view: Activity/personnel resource CYMP_OBJECT_PVIEWCHAR50CHAR50
OBJECT_WVIEWObject in work center view: Personnel resource/activity CYMP_OBJECT_WVIEWCHAR50CHAR50
ARBEI_OVERALLTotal work to be distributed from this operation CY_ARBEI_OVERALLCHAR8CHAR8
ARBEI_ALLOCWork not yet distributed or already distributed work CY_ARBEI_ALLOCCHAR8CHAR8
UNIT_ARBEI_ALLOCUnit for work ARBEITEUNIT3Assigned to domainCUNITMEINS
COL_INFOInfo icon CYMP_COL_INFOCHAR132CHAR132
STRU_ICONIcon for a personnel resource or a work center CYMP_STRU_ICONCHAR132CHAR132
AVLB_RESRead availability of personnel resources CYMP_AVLB_RESCHAR1KREUZ
AVLB_WCDisplay availability of work center CYMP_AVLB_WCCHAR1KREUZ

Key field Non-key field



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

As CYMP_OUTPUT_FIELDS 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 CYMP_OUTPUT_FIELDS as there is no data to select.

How to access SAP table CYMP_OUTPUT_FIELDS

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

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