SAP BBPD_CTR_NOV_LOG Novation Protocol Table data and field list

BBPD_CTR_NOV_LOG is a standard SAP Table which is used to store Novation Protocol data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The BBPD_CTR_NOV_LOG table consists of various fields, each holding specific information or linking keys about Novation Protocol data available in SAP. These include NOVATION_GUID (GUID of a CRM Order Object), NOVATION_ID (Novation ID), OBJECT_ID (Transaction Number), OBJECT_TYPE (Business Trans. Cat.)... 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. .

BBPD_CTR_NOV_LOG 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: Cannot Be Enhanced


SAP BBPD_CTR_NOV_LOG 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 BBPD_CTR_NOV_LOG 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
NOVATION_GUIDGUID of a CRM Order Object CRMT_OBJECT_GUIDRAW16SYSUUID
NOVATION_IDNovation ID BBP_NOVATION_IDNUMC10BBP_NOVATION_ID
OBJECT_IDTransaction Number CRMT_OBJECT_ID_DBCHAR10ALPHACRM_OBJECT_ID
OBJECT_TYPEBusiness Trans. Cat. CRMT_SUBOBJECT_CATEGORY_DBCHAR10Assigned to domainCRM_OJ_NAME_PROCESS
SUBTYPESpecification of a Purchasing Doc.(e.g. Credit Memo/Invoice) BBP_H_SUBTYPECHAR2BBP_H_SUBTYPE
NOV_PROC_DATETransaction was Created at this Time CRMT_CREATED_ATDEC15TSTPSBCOS_TSTMP
NOV_DATETime Stamp (Date and Time) BBP_TIMESTAMPDEC15TSTPSBCOS_TSTMP
VENDOR_NO_OLDPartner Number CRMT_PARTNER_NOCHAR32CRM_PARTNER_NO
VENDOR_ID_OLDBusiness Partner Number BU_PARTNERCHAR10Assigned to domainALPHABU_PARTNERBPABUPA
VENDOR_OLD_FROMTime Dependency: Validity Start Date BBP_VALID_FROM_TSDEC15TSTPSBCOS_TSTMP
VENDOR_OLD_TOTime Dependency: Validity End Date BBP_VALID_TO_TSDEC15TSTPSBCOS_TSTMP
VENDOR_NO_NEWPartner Number CRMT_PARTNER_NOCHAR32CRM_PARTNER_NO
VENDOR_ID_NEWBusiness Partner Number BU_PARTNERCHAR10Assigned to domainALPHABU_PARTNERBPABUPA
VENDOR_NEW_FROMTime Dependency: Validity Start Date BBP_VALID_FROM_TSDEC15TSTPSBCOS_TSTMP
VENDOR_NEW_TOTime Dependency: Validity End Date BBP_VALID_TO_TSDEC15TSTPSBCOS_TSTMP

Key field Non-key field



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

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

SELECT SINGLE *
FROM BBPD_CTR_NOV_LOG
INTO CORRESPONDING FIELDS OF WA_BBPD_CTR_NOV_LOG
WHERE...

How to access SAP table BBPD_CTR_NOV_LOG

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

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