SAP BPOBTAB Partner-Object Relationship Table data and field list

BPOBTAB is a standard SAP Table which is used to store Partner-Object Relationship data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The BPOBTAB table consists of various fields, each holding specific information or linking keys about Partner-Object Relationship data available in SAP. These include ASSI_TYP (Assignment Category), ASSI_NR (Allocation Number), PARTNER (Business Partner Number), RLTYP (BP Role)... 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. .

BPOBTAB table Technical Details:

Delivery Class: A - Application table (master and transaction data)
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type)


SAP BPOBTAB 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 BPOBTAB 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
ASSI_TYPAssignment Category BP_ASSI_TYPCHAR6TPR1BP_ASSI_TYP
ASSI_NRAllocation Number BP_ASSI_NRCHAR30BP_ASSI_NR
PARTNERBusiness Partner Number BU_PARTNERCHAR10Assigned to domainALPHABU_PARTNERBPABUPA
RLTYPBP Role BU_PARTNERROLECHAR6TB003BU_ROLEBUPA_ROLE
TRDATESequence of Partner-Object Relationships BU_DTRANSDATS8DATUM
APPLApplication Category BP_APPLCHAR4Assigned to domainBP_APPLH_TPZ12
DATE_FROMDate of start of relationship DATBBEZDATS8DATUM
DATE_TODate of end of relationship DATEBEZDATS8DATUM
NODE_KEYNodes BP_NODE_KEYCHAR12BP_NODE_KEY
ADR_KINDAddress Type BU_ADRKINDCHAR10TB009BU_ADRKIND
TEXTText Field TEXT50CHAR50TEXT50
CRUSRUser who created the object BU_CRUSRCHAR12USNAM
CRDATDate on which the object was created BU_CRDATDATS8DATUM
CRTIMTime at which the object was created BU_CRTIMTIMS6UZEIT
CHUSRLast user to change object BU_CHUSRCHAR12USNAM
CHDATDate when object was last changed BU_CHDATDATS8DATUM
CHTIMTime at which object was last changed BU_CHTIMTIMS6UZEIT

Key field Non-key field



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

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

SELECT SINGLE *
FROM BPOBTAB
INTO CORRESPONDING FIELDS OF WA_BPOBTAB
WHERE...

How to access SAP table BPOBTAB

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

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