SAP BBPS_CM_POCA_D Program-Objective-Category assignment Table data and field list

BBPS_CM_POCA_D 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 "Program-Objective-Category assignment" 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_BBPS_CM_POCA_D TYPE BBPS_CM_POCA_D.

The BBPS_CM_POCA_D table consists of various fields, each holding specific information or linking keys about Program-Objective-Category assignment data available in SAP. These include CM_PROG_GUID (GUID in character format), CM_OBJCTIVE_GUID (GUID in character format), CM_CATEGORY_GUID (GUID in character format), CM_ALLOC_SPEND (Planned Spending Value)... 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. .

BBPS_CM_POCA_D structure Technical Details:

Delivery Class:
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced


SAP BBPS_CM_POCA_D 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 BBPS_CM_POCA_D 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
CM_POCA_GUIDGUID in character format BBP_CM_GUID_DCHAR32SYSUUID_C
CM_PROG_GUIDGUID in character format BBP_CM_GUID_DCHAR32SYSUUID_C
CM_OBJCTIVE_GUIDGUID in character format BBP_CM_GUID_DCHAR32SYSUUID_C
CM_CATEGORY_GUIDGUID in character format BBP_CM_GUID_DCHAR32SYSUUID_C
CM_ALLOC_SPENDPlanned Spending Value BBP_CM_ALLOC_SPENDCURR15(2) WERT8
CM_ALLOC_OBJTVObjective Breakdown BBP_CM_ALLOC_OBJTVCURR15(2) WERT8
CM_PROG_NAMEProgram Name BBP_CM_PROG_NAMECHAR40BBP_CM_NAME
CM_OBJECTIVE_DESCObjective Description BBP_CM_OBJECTIVE_DESCCHAR255BBP_CM_DESCRIPTION
CM_CATEGORY_TEXTCategory Description COMT_CATEGORY_TEXTCHAR80TEXT80
CM_OBJECTIVE_TYPEObjective Types BBP_CM_OBJECTIVE_TYPECHAR6CHAR6
CM_UNUSED_SPENDPlanned Spending Value BBP_CM_ALLOC_SPENDCURR15(2) WERT8
CM_UNUSED_OBJTVObjective Breakdown BBP_CM_ALLOC_OBJTVCURR15(2) WERT8
CM_PROG_CURRCurrency Key WAERSCUKY5Assigned to domainWAERSFWS
CM_PROG_STATUSState of the Object BBP_CM_OBJ_STATECHAR30CHAR30
CM_PROG_CROOM_IDCollaboration Room Identifier for Category Management BBP_CM_METH_CROOM_IDCHAR64CHAR64
CM_OPEROperator indicating insertion, update or deletion of info BBP_CM_OPERCHAR1BBP_CM_OPER
CM_ADDRESSED_SPENDTotal of planned spending values for initiatives BBP_CM_ADDRESSED_SPENDSCURR15(2) WERT8
CM_ADDRESSED_OBJTVTotal of planned objectives for an initiative BBP_CM_ADDRESSED_OBJECTIVESCURR15(2) WERT8
CM_NEGOTIATED_OBJTVNegotiated Objective Value BBP_CM_NEGOTIATED_OBJECTIVESCURR15(2) WERT8
CM_ACTUAL_OBJTVActual objective value achieved after initiative completion BBP_CM_ACTUAL_OBJECTIVESCURR15(2) WERT8
CATEGORY_IDCategory ID COMT_CATEGORY_IDCHAR20COM_CATEGORY_IDCOM_CATEGORY_IDCOM_CAT_HIER
CATEGORY_LOGSYSDescription of Logical System COMT_LOGSYSTCHAR40TEXT40
CM_ORG_UNITObject ID HROBJIDNUMC8Assigned to domainHROBJIDPON
CM_ORG_STEXTObject Name STEXTCHAR40TEXT40
CM_CAT_SEQ_NUMSequence Number BBP_CM_SEQ_NUMNUMC3BBP_CM_SEQ_NUM
CM_ORG_SEQ_NUMSequence Number BBP_CM_SEQ_NUMNUMC3BBP_CM_SEQ_NUM

Key field Non-key field



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

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

How to access SAP table BBPS_CM_POCA_D

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

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