I_BusinessPartnerReplication

DDL: I_BUSINESSPARTNERREPLICATION Type: view_entity COMPOSITE

Replication of a Business Partner

I_BusinessPartnerReplication is a Composite CDS View that provides data about "Replication of a Business Partner" in SAP S/4HANA. It reads from 1 data source (I_BusinessPartner) and exposes 7 fields with key field BusinessPartner.

Data Sources (1)

SourceAliasJoin Type
I_BusinessPartner I_BusinessPartner from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Replication of a Business Partner view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #COMPOSITE view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner BusinessPartner Issuing Authority
BusinessPartnerName BusinessPartnerName Extracted Customer Name
BusinessPartnerFullName BusinessPartnerFullName Broker Name
BusinessPartnerCategory BusinessPartnerCategory Partner Cat.
IsBusinessPurposeCompleted IsBusinessPurposeCompleted Purpose Completed
AuthorizationGroup AuthorizationGroup AuthorizGroup
DataControllerSet DataControllerSet Data Ctrlr. Set

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_BusinessPartnerReplication.
-- 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.

CREATE VIEW I_BusinessPartnerReplication AS
SELECT
  BusinessPartner,
  BusinessPartnerName,
  BusinessPartnerFullName,
  BusinessPartnerCategory,
  IsBusinessPurposeCompleted,
  AuthorizationGroup,
  DataControllerSet
FROM I_BusinessPartner
;