C_BPBankProcessChanges

DDL: C_BPBANKPROCESSCHANGES SQL: CBPBANKPROCCHG Type: view CONSUMPTION Package: MDC_BUPA_GOV_BO

Business Partner Bank Process Changes

C_BPBankProcessChanges is a Consumption CDS View that provides data about "Business Partner Bank Process Changes" in SAP S/4HANA. It reads from 1 data source (I_BPBankProcessChanges) and exposes 21 fields with key fields MasterDataChangeProcess, MDChgProcessStep, MDChgProcessSrceSystem, MDChgProcessSrceObject, BankIdentification. It is exposed through 3 OData services (ASQL_F7205A, C_MDCHGPROCBPDETAILSTP_SRV, C_MDCHGPROCBPDETAILSTP_SRV). Part of development package MDC_BUPA_GOV_BO.

Data Sources (1)

SourceAliasJoin Type
I_BPBankProcessChanges I_BPBankProcessChanges from

Annotations (10)

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

OData Services (3)

ServiceBindingVersionContractRelease
ASQL_F7205A ASQL_F7205A C2 NOT_RELEASED
C_MDCHGPROCBPDETAILSTP_SRV C_MDCHGPROCBPDETAILSTP_SRV V2 C1 NOT_RELEASED
C_MDCHGPROCBPDETAILSTP_SRV C_MDCHGPROCBPDETAILSTP_V2 V2 C1 NOT_RELEASED

Fields (21)

KeyFieldSource TableSource FieldDescription
KEY MasterDataChangeProcess MasterDataChangeProcess Process ID
KEY MDChgProcessStep MDChgProcessStep Step Number
KEY MDChgProcessSrceSystem MDChgProcessSrceSystem Source System
KEY MDChgProcessSrceObject MDChgProcessSrceObject Source ID
KEY BankIdentification BankIdentification Bank Details
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
BankCountryKey BankCountryKey Bank Ctry/Reg.
BPBankIsProtected BPBankIsProtected Sensitivity
_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_BPBankProcessChanges.
-- 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: CBPBANKPROCCHG

CREATE VIEW C_BPBankProcessChanges AS
SELECT
  MasterDataChangeProcess,
  MDChgProcessStep,
  MDChgProcessSrceSystem,
  MDChgProcessSrceObject,
  BankIdentification,
  MDChgProcessModelTableName,
  MDChangeProcessModelFieldName,
  MDChgProcessRecordObjectID,
  MDChangeProcModelTableDesc,
  MDChangeProcessModelFieldDesc,
  MDChgProcModelNodeExternalName,
  MDChgProcModTableExternalName,
  MDChgProcModFieldExternalName,
  MDChgProcCurrentAttributeValue,
  MDChgProcPrevAttributeValue,
  MDChgProcessAttributeIsChanged,
  MDChgProcessSourceModified,
  MDChgProcessRecordObjectText,
  BankCountryKey,
  BPBankIsProtected
FROM I_BPBankProcessChanges
;