I_EWM_BusinessPartner

DDL: I_EWM_BUSINESSPARTNER SQL: IEWMBP Type: view COMPOSITE

EWM Business Partner

I_EWM_BusinessPartner (Composite)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Supply Chain

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

SAP Help Documentation

CategoryCDS Views for Master Data
Data CategoryDimension
StatusReleased
Purpose
This CDS view provides information about business partners in your warehouse.

Structure
Measures and Attributes The important measure and attribute is Business Partner.

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessSupply Chain
Application ComponentSCM-EWM-WOP
CapabilitiesAnalytical Dimension, Data Source in SQL Select, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities
PackageSupply Chain for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides information about business partners in your warehouse.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
I_BusinessPartner I_BusinessPartner from

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName IEWMBP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label EWM Business Partner view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #COMPOSITE view
Metadata.allowExtensions true view
ObjectModel.representativeKey BusinessPartner view
Analytics.dataCategory #DIMENSION view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner BusinessPartner Business Partner Number
BusinessPartnerUUID BusinessPartnerUUID Business Partner GUID
BusinessPartnerName OrganizationBPName1 Name 1 of organization
AuthorizationGroup AuthorizationGroup Authorization Group
IsBusinessPurposeCompleted IsBusinessPurposeCompleted Business Purpose Completed Flag
DataControllerSet DataControllerSet BP: Data Controller Set Flag
DataController1 DataController1 BP: Data Controller (Internal Use Only)
DataController2 DataController2 BP: Data Controller (Internal Use Only)
DataController3 DataController3 BP: Data Controller (Internal Use Only)
DataController4 DataController4 BP: Data Controller (Internal Use Only)
DataController5 DataController5 BP: Data Controller (Internal Use Only)
DataController6 DataController6 BP: Data Controller (Internal Use Only)
DataController7 DataController7 BP: Data Controller (Internal Use Only)
DataController8 DataController8 BP: Data Controller (Internal Use Only)
DataController9 DataController9 BP: Data Controller (Internal Use Only)
DataController10 DataController10 BP: Data Controller (Internal Use Only)

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_EWM_BusinessPartner.
-- 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: IEWMBP

CREATE VIEW I_EWM_BusinessPartner AS
SELECT
  BusinessPartner,
  BusinessPartnerUUID,
  OrganizationBPName1 AS BusinessPartnerName,
  AuthorizationGroup,
  IsBusinessPurposeCompleted,
  DataControllerSet,
  DataController1,
  DataController2,
  DataController3,
  DataController4,
  DataController5,
  DataController6,
  DataController7,
  DataController8,
  DataController9,
  DataController10
FROM I_BusinessPartner
;