SAP CMS_SEC_ACC_BP Link between securities account and BuPa is stored here Table data and field list

CMS_SEC_ACC_BP is a standard SAP Table which is used to store Link between securities account and BuPa is stored here data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The CMS_SEC_ACC_BP table consists of various fields, each holding specific information or linking keys about Link between securities account and BuPa is stored here data available in SAP. These include SEC_ACC_BP_GUID ( Account Business partner guid), SEC_ACC_GUID (GUID for securities account), BUPA_ID (Business Partner Identification Number), BPF (Business Partner Function)... 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. .

CMS_SEC_ACC_BP 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 CMS_SEC_ACC_BP 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 CMS_SEC_ACC_BP 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
SEC_ACC_BP_GUID Account Business partner guid CMS_DTE_SEC_ACC_BP_GUIDRAW16SYSUUID
SEC_ACC_GUIDGUID for securities account CMS_DTE_SEC_ACC_GUIDRAW16SYSUUID
BUPA_IDBusiness Partner Identification Number CMS_DTE_BPIDCHAR32CMS_BPID
BPFBusiness Partner Function CMS_DTE_BPFCHAR6TCMS_BPFCMS_BPFCMS_BPF
BUPA_SHARE_NRNumerator in Business Partner Share of Securities Account CMS_DTE_SEC_BUPA_NRINT410CMS_RATIO
BUPA_SHARE_DRDenominator in Business Partner Share of Securities Account CMS_DTE_SEC_BUPA_DRINT410CMS_RATIO
BP_VALID_FROMDate from which Real Estate Value stands Valid CMS_RE_DTE_VAL_VALID_FROMDATS8DATUM
BP_VALID_TODate unitl which Real Estate Value stands Valid CMS_RE_DTE_VAL_VALID_TODATS8DATUM
CREATED_BYSecurities Add-On User CMS_DTE_SEC_CR_BYCHAR12CMS_USER
CREATED_DATECreated On CMS_DTE_SEC_CR_ONDATS8CMS_DATE
CREATED_TIMECreated At CMS_DTE_SEC_CR_ATTIMS6CMS_TIME
LAST_CHG_BYLast Changed By CMS_DTE_SEC_CH_BYCHAR12CMS_USER
LAST_CHG_DATELast Changed on CMS_DTE_SEC_CH_ONDATS8CMS_DATE
LAST_CHG_TIMELast Changed At CMS_DTE_SEC_CH_ATTIMS6CMS_TIME

Key field Non-key field



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

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

SELECT SINGLE *
FROM CMS_SEC_ACC_BP
INTO CORRESPONDING FIELDS OF WA_CMS_SEC_ACC_BP
WHERE...

How to access SAP table CMS_SEC_ACC_BP

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

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