SAP UPB_PM_GRAPH Graphic Settings for POBs of a Planning Folder Table data and field list

UPB_PM_GRAPH is a standard SAP Table which is used to store Graphic Settings for POBs of a Planning Folder data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The UPB_PM_GRAPH table consists of various fields, each holding specific information or linking keys about Graphic Settings for POBs of a Planning Folder data available in SAP. These include APPLC (Planning Application), PM_NAME (Name of Planning Folder), POB_KEY (Technical Key of a Planning Object), GRAPH_TYPE (Type of Graphic Output)... 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. .

UPB_PM_GRAPH table Technical Details:

Delivery Class: G - Customising table which is protected against SAP Update
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced


SAP UPB_PM_GRAPH 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 UPB_PM_GRAPH 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
APPLCPlanning Application UPB_Y_APPLCCHAR4UPB_APPLC
PM_NAMEName of Planning Folder UPB_Y_PS_NAMECHAR8UPB_PS_PROPUPB_PS_NAME
POB_KEYTechnical Key of a Planning Object UPB_Y_PS_POB_KEYCHAR8UPB_PS_POB_KEY
GRAPH_TYPEType of Graphic Output UPB_Y_PM_GRAPH_TYPECHAR20Assigned to domainUPB_PM_GRAPH_TYPE
GRAPH_LEGENDPosition of Legend UPB_Y_PM_LEGENDCHAR5UPB_PM_LEGEND
GRAPH_XYDrilldown Order UPB_Y_PM_XYCHAR4UPB_PM_XY
AS_GRAPHOutput as Graphic, Layout or Both UPB_Y_PM_AS_GRAPHCHAR2UPB_PM_AS_GRAPH
WIDTHWidth of Graphic UPB_Y_PM_GRAPH_WIDTHNUMC4UPB_PM_GRAPH_SIZE
HEIGHTHeight of Graphic UPB_Y_PM_GRAPH_HEIGHTNUMC4UPB_PM_GRAPH_SIZE

Key field Non-key field



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

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

SELECT SINGLE *
FROM UPB_PM_GRAPH
INTO CORRESPONDING FIELDS OF WA_UPB_PM_GRAPH
WHERE...

How to access SAP table UPB_PM_GRAPH

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

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