I_BusinessPartnerRoleProc

DDL: I_BUSINESSPARTNERROLEPROC SQL: IBPROLEPROC Type: view BASIC

Core View: Bus Part Role (Process)

I_BusinessPartnerRoleProc is a Basic CDS View that provides data about "Core View: Bus Part Role (Process)" in SAP S/4HANA. It reads from 1 data source (but100_prc) and exposes 11 fields with key fields MasterDataChangeProcess, MDChgProcessStep, MDChgProcessSrceSystem, MDChgProcessSrceObject, BusinessPartnerRole.

Data Sources (1)

SourceAliasJoin Type
but100_prc but100_prc from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IBPROLEPROC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Core View: Bus Part Role (Process) view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #BASIC view

Fields (11)

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
KEY BusinessPartnerRole rltyp Return type
BusinessPartner partner With Partner
ValidFrom valid_from Validity Start Time
ValidTo valid_to Validity End Time
MDChgProcessSourceModified source_modified Modified
MDChgProcessSourceModifBinary source_modification_blip Modification
MDChgProcSrceLastChgdDateTime source_recency Last Changed On

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 I_BusinessPartnerRoleProc.
-- 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: IBPROLEPROC

CREATE VIEW I_BusinessPartnerRoleProc AS
SELECT
  process_id AS MasterDataChangeProcess,
  process_step_no AS MDChgProcessStep,
  source_system AS MDChgProcessSrceSystem,
  source_id AS MDChgProcessSrceObject,
  rltyp AS BusinessPartnerRole,
  partner AS BusinessPartner,
  valid_from AS ValidFrom,
  valid_to AS ValidTo,
  source_modified AS MDChgProcessSourceModified,
  source_modification_blip AS MDChgProcessSourceModifBinary,
  source_recency AS MDChgProcSrceLastChgdDateTime
FROM but100_prc
;