C_SlsOrdReqCustomerMultiAddrVH

DDL: C_SLSORDREQCUSTOMERMULTIADDRVH Type: view_entity CONSUMPTION

Customer by Sales Area and Multi Address

C_SlsOrdReqCustomerMultiAddrVH is a Consumption CDS View that provides data about "Customer by Sales Area and Multi Address" in SAP S/4HANA. It reads from 2 data sources (C_Q2CCustomerMultiAddrVH, I_CustomerSalesArea) and exposes 22 fields with key fields Customer, SalesOrganization, DistributionChannel, Division, AddressID. It has 4 associations to related views.

Data Sources (2)

SourceAliasJoin Type
C_Q2CCustomerMultiAddrVH _MultiAddr inner
I_CustomerSalesArea I_CustomerSalesArea from

Associations (4)

CardinalityTargetAliasCondition
[1..1] I_Customer _Customer $projection.Customer = _Customer.Customer
[0..*] I_SalesOrganizationText _SalesOrganizationText $projection.SalesOrganization = _SalesOrganizationText.SalesOrganization
[0..*] I_DistributionChannelText _DistributionChannelText $projection.DistributionChannel = _DistributionChannelText.DistributionChannel
[0..*] I_DivisionText _DivisionText $projection.Division = _DivisionText.Division

Annotations (13)

NameValueLevelField
EndUserText.label Customer by Sales Area and Multi Address view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey Customer view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
Consumption.ranked true view
Feature SW:Q2C_MULTIPLE_BP_ADDRESSES, SW:Q2C_MULTIPLE_BP_ADDRESSES2 view

Fields (22)

KeyFieldSource TableSource FieldDescription
KEY Customer I_CustomerSalesArea Customer Sold-to Party
KEY SalesOrganization I_CustomerSalesArea SalesOrganization Sales Organization
KEY DistributionChannel I_CustomerSalesArea DistributionChannel RefDistCh-Cust/Mat.
KEY Division I_CustomerSalesArea Division Internal Division ID
KEY AddressID C_Q2CCustomerMultiAddrVH AddressID Ship-to address
CustomerName _Customer CustomerName Name of Customer
SalesOrganizationName
DistributionChannelName
DivisionName
OrganizationBPName1 _Customer OrganizationBPName1 Name 1
OrganizationBPName2 _Customer OrganizationBPName2 Name 2
PostalCode C_Q2CCustomerMultiAddrVH PostalCode Postal Code
CityName C_Q2CCustomerMultiAddrVH CityName Name
Country C_Q2CCustomerMultiAddrVH Country Venue: Ctry/Reg
StreetName C_Q2CCustomerMultiAddrVH StreetName Text
HouseNumber C_Q2CCustomerMultiAddrVH HouseNumber House Number
AuthorizationGroup I_CustomerSalesArea AuthorizationGroup AuthorizGroup
IsBusinessPurposeCompleted I_CustomerSalesArea IsBusinessPurposeCompleted Purpose Completed
_Customer _Customer
_SalesOrganizationText _SalesOrganizationText
_DistributionChannelText _DistributionChannelText
_DivisionText _DivisionText

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 C_SlsOrdReqCustomerMultiAddrVH.
-- 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 C_SlsOrdReqCustomerMultiAddrVH AS
SELECT
  I_CustomerSalesArea.Customer AS Customer,
  I_CustomerSalesArea.SalesOrganization AS SalesOrganization,
  I_CustomerSalesArea.DistributionChannel AS DistributionChannel,
  I_CustomerSalesArea.Division AS Division,
  _MultiAddr.AddressID AS AddressID,
  _Customer.CustomerName AS CustomerName,
  _SalesOrganizationText[1:Language = $session.system_language].SalesOrganizationName AS SalesOrganizationName,
  _DistributionChannelText[1:Language = $session.system_language].DistributionChannelName AS DistributionChannelName,
  _DivisionText[1:Language = $session.system_language].DivisionName AS DivisionName,
  _Customer.OrganizationBPName1 AS OrganizationBPName1,
  _Customer.OrganizationBPName2 AS OrganizationBPName2,
  _MultiAddr.PostalCode AS PostalCode,
  _MultiAddr.CityName AS CityName,
  _MultiAddr.Country AS Country,
  _MultiAddr.StreetName AS StreetName,
  _MultiAddr.HouseNumber AS HouseNumber,
  I_CustomerSalesArea.AuthorizationGroup AS AuthorizationGroup,
  I_CustomerSalesArea.IsBusinessPurposeCompleted AS IsBusinessPurposeCompleted
FROM I_CustomerSalesArea
INNER JOIN C_Q2CCustomerMultiAddrVH AS _MultiAddr ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_Customer AS _Customer ON Customer = _Customer.Customer  -- association [1..1]
LEFT OUTER JOIN I_SalesOrganizationText AS _SalesOrganizationText ON SalesOrganization = _SalesOrganizationText.SalesOrganization  -- association [0..*]
LEFT OUTER JOIN I_DistributionChannelText AS _DistributionChannelText ON DistributionChannel = _DistributionChannelText.DistributionChannel  -- association [0..*]
LEFT OUTER JOIN I_DivisionText AS _DivisionText ON Division = _DivisionText.Division  -- association [0..*]
;