I_SalesAreaSalesOfficeOrgUnit

DDL: I_SALESAREASALESOFFICEORGUNIT SQL: ISLSAREAORGUNT Type: view COMPOSITE

Sales Area of Org Unit

I_SalesAreaSalesOfficeOrgUnit is a Composite CDS View that provides data about "Sales Area of Org Unit" in SAP S/4HANA. It has 1 association to related views.

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_SalesOfficeOrgUnit _SalesOffice $projection.OrganizationalUnit = _SalesOffice.OrganizationalUnit

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ISLSAREAORGUNT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Sales Area of Org Unit view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY OrganizationalUnit OrganizationalUnit Org. Unit ID
KEY DistributionChannel DistributionChannel RefDistCh-Cust/Mat.
KEY Division Division Internal Division ID
SalesOrganization SalesOrganization Sales Organization
SalesOfficeOrgUnitID _SalesOffice SalesOfficeOrgUnitID

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_SalesAreaSalesOfficeOrgUnit.
-- 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: ISLSAREAORGUNT

CREATE VIEW I_SalesAreaSalesOfficeOrgUnit AS
SELECT
  OrganizationalUnit,
  DistributionChannel,
  Division,
  SalesOrganization,
  _SalesOffice.SalesOfficeOrgUnitID AS SalesOfficeOrgUnitID
LEFT OUTER JOIN I_SalesOfficeOrgUnit AS _SalesOffice ON OrganizationalUnit = _SalesOffice.OrganizationalUnit  -- association [0..1]
;