SAP BPOBIMMO Business Partner - Object Relationship: Real Estate Table data and field list

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

The BPOBIMMO table consists of various fields, each holding specific information or linking keys about Business Partner - Object Relationship: Real Estate 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. .

BPOBIMMO 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: Not classified


SAP BPOBIMMO 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 BPOBIMMO 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
KUNNRCustomer Numbers KUNNRCHAR10Assigned to domainALPHAKUNNRKUNC_KUNNR
GZLSCHPayment method for credit memos VVGZLSCHCHAR1Assigned to domainZLSCH
BVTYPPartner Bank Type BVTYPCHAR4BVTYP
ZLSCHPayment Method DZLSCHCHAR1Assigned to domainZLSCH
ROLEBusiness Partner Role Type BP_ROLECHAR4Assigned to domainBP_ROLE
SOBTYPApplication Category BP_APPLCHAR4Assigned to domainBP_APPLH_TPZ12
BRUTEILFractional share of property BRUTEILDEC9(3) DEC6_3
BMITEIGCo-ownership share BMITEIGDEC9(3) DEC6_3
PANTEILOwnership share PANTEILDEC6(2) DEC4_2
RFAKTConversion factor for fractional share of property VVRFAKTNUMC6VVRFAKT
SVWNRManagement Contract Number VVSVWNRCHAR13Assigned to domainALPHAVVSVWNRVWVMCVW
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 BPOBIMMO using ABAP code

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

SELECT SINGLE *
FROM BPOBIMMO
INTO CORRESPONDING FIELDS OF WA_BPOBIMMO
WHERE...

How to access SAP table BPOBIMMO

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

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