Deprecated
This CDS view is deprecated in S/4HANA. Use I_EWM_AssgWhseBusPartner_2 instead. View all deprecated CDS views →

I_EWM_AssgWhseBusinessPartner

DDL: I_EWM_ASSGWHSEBUSINESSPARTNER SQL: IEWMWHSEBUPA Type: view BASIC

Assignment of Whse to Business Partner

I_EWM_AssgWhseBusinessPartner is a Basic CDS View that provides data about "Assignment of Whse to Business Partner" in SAP S/4HANA. It reads from 1 data source (/scwm/t300_md) and exposes 7 fields with key fields Client, Warehouse, BusinessPartner.

Data Sources (1)

SourceAliasJoin Type
/scwm/t300_md /scwm/t300_md from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IEWMWHSEBUPA view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
EndUserText.label Assignment of Whse to Business Partner view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
ObjectModel.usageType.sizeCategory #S view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_EWM_AssgWhseBusPartner_2 view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Client mandt Editing Client
KEY Warehouse lgnum Whse Number
KEY BusinessPartner custodian Owner
DefaultPartyEntitledToDispose entitled Party Ent. to Disp.
SupplyChainUnit sc_unit Supply Chain Unit
SupplyChainUnitUUID scuguid SC Unit GUID
DefaultShipToParty shipto Ship-to Party

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_AssgWhseBusinessPartner.
-- 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: IEWMWHSEBUPA

CREATE VIEW I_EWM_AssgWhseBusinessPartner AS
SELECT
  mandt AS Client,
  lgnum AS Warehouse,
  custodian AS BusinessPartner,
  entitled AS DefaultPartyEntitledToDispose,
  sc_unit AS SupplyChainUnit,
  scuguid AS SupplyChainUnitUUID,
  shipto AS DefaultShipToParty
FROM /scwm/t300_md
;