C_BPAddressProcessChanges

DDL: C_BPADDRESSPROCESSCHANGES SQL: CBPADDRPROCCHG Type: view CONSUMPTION

Business Partner Address Process Changes

C_BPAddressProcessChanges is a Consumption CDS View that provides data about "Business Partner Address Process Changes" in SAP S/4HANA. It reads from 1 data source (I_BPAddressProcessChanges) and exposes 20 fields with key fields MasterDataChangeProcess, MDChgProcessStep, MDChgProcessSrceSystem, MDChgProcessSrceObject, AddressNumber. It is exposed through 1 OData service (C_MDCHGPROCBPDETAILSTP_SRV). It is used in 2 Fiori applications: Mass Edit BP Relationships, Mass Edit Business Partners.

Data Sources (1)

SourceAliasJoin Type
I_BPAddressProcessChanges I_BPAddressProcessChanges from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CBPADDRPROCCHG view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Business Partner Address Process Changes view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #XL view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view

OData Services (1)

ServiceBindingVersionContractRelease
C_MDCHGPROCBPDETAILSTP_SRV C_MDCHGPROCBPDETAILSTP_SRV V2 C1 NOT_RELEASED

Fiori Apps (2)

App IDApp NameTypeDescription
F6563 Mass Edit BP Relationships Transactional
F6564 Mass Edit Business Partners Transactional An application to display or edit the data of an MDG master data process. The data will be shown in a table-like UI. This Fiori app has no own tile, but can be navigated from the MDG process UI (e.g. Manage Governance Processes - Business Partner).

Mass Edit BP Relationships

Business Role: Master Data Specialist - Business Partner Data

This app is used in SAP Master Data Governance in cloud-ready mode.You can access Mass Edit from any process handling business partner relationship data."Edit" enables you to manually change individual field values while "Mass Edit" offers to change field values in one step, either for all records or for a set of selected records. In the Mass Edit you have following options to change field value: Keep existing value Replace field value Clear field value

Mass Edit Business Partners

Business Role: Master Data Specialist - Business Partner Data

Fields (20)

KeyFieldSource TableSource FieldDescription
KEY MasterDataChangeProcess MasterDataChangeProcess Process ID
KEY MDChgProcessStep MDChgProcessStep Step Number
KEY MDChgProcessSrceSystem MDChgProcessSrceSystem Source System
KEY MDChgProcessSrceObject MDChgProcessSrceObject Source ID
KEY AddressNumber AddressNumber Src Address No
KEY MDChgProcessModelTableName MDChgProcessModelTableName
KEY MDChangeProcessModelFieldName MDChangeProcessModelFieldName
KEY MDChgProcessRecordObjectID MDChgProcessRecordObjectID
MDChangeProcModelTableDesc MDChangeProcModelTableDesc
MDChangeProcessModelFieldDesc MDChangeProcessModelFieldDesc
MDChgProcModelNodeExternalName MDChgProcModelNodeExternalName
MDChgProcModTableExternalName MDChgProcModTableExternalName
MDChgProcModFieldExternalName MDChgProcModFieldExternalName
MDChgProcCurrentAttributeValue MDChgProcCurrentAttributeValue
MDChgProcPrevAttributeValue MDChgProcPrevAttributeValue
MDChgProcessAttributeIsChanged MDChgProcessAttributeIsChanged
MDChgProcessSourceModified MDChgProcessSourceModified Modified
MDChgProcessRecordObjectText MDChgProcessRecordObjectText
_BPProtectedAddress _BPProtectedAddress
_BusinessPartner _BusinessPartner

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view C_BPAddressProcessChanges.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: CBPADDRPROCCHG

CREATE VIEW C_BPAddressProcessChanges AS
SELECT
  MasterDataChangeProcess,
  MDChgProcessStep,
  MDChgProcessSrceSystem,
  MDChgProcessSrceObject,
  AddressNumber,
  MDChgProcessModelTableName,
  MDChangeProcessModelFieldName,
  MDChgProcessRecordObjectID,
  MDChangeProcModelTableDesc,
  MDChangeProcessModelFieldDesc,
  MDChgProcModelNodeExternalName,
  MDChgProcModTableExternalName,
  MDChgProcModFieldExternalName,
  MDChgProcCurrentAttributeValue,
  MDChgProcPrevAttributeValue,
  MDChgProcessAttributeIsChanged,
  MDChgProcessSourceModified,
  MDChgProcessRecordObjectText
FROM I_BPAddressProcessChanges
;