E_BusinessPartnerProcess

DDL: E_BUSINESSPARTNERPROCESS SQL: EBPPROCESS Type: view EXTENSION Package: MDC_BUPA_GOV_BO

Extension View for Extensibility of BUT000_PRC

E_BusinessPartnerProcess is a Extension CDS View that provides data about "Extension View for Extensibility of BUT000_PRC" in SAP S/4HANA. It reads from 1 data source (but000_prc) and exposes 4 fields with key fields MasterDataChangeProcess, MDChgProcessStep, MDChgProcessSrceSystem, MDChgProcessSrceObject. Part of development package MDC_BUPA_GOV_BO.

Data Sources (1)

SourceAliasJoin Type
but000_prc Persistence from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName EBPPROCESS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
VDM.viewType #EXTENSION view
EndUserText.label Extension View for Extensibility of BUT000_PRC view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #XXL view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY MasterDataChangeProcess process_id Process Instance ID
KEY MDChgProcessStep process_step_no Step Number
KEY MDChgProcessSrceSystem source_system Source System
KEY MDChgProcessSrceObject source_id UUID

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 E_BusinessPartnerProcess.
-- 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: EBPPROCESS

CREATE VIEW E_BusinessPartnerProcess AS
SELECT
  process_id AS MasterDataChangeProcess,
  process_step_no AS MDChgProcessStep,
  source_system AS MDChgProcessSrceSystem,
  source_id AS MDChgProcessSrceObject
FROM but000_prc AS Persistence
;