A_DelivSchedSoldToPartyDetn

DDL: A_DELIVSCHEDSOLDTOPARTYDETN Type: view COMPOSITE Package: P_SLSSA_INTEGRATION_ODATA

Sold-to Party Assignment

A_DelivSchedSoldToPartyDetn is a Composite CDS View that provides data about "Sold-to Party Assignment" in SAP S/4HANA. It reads from 1 data source (I_DelivSchedSoldToPartyDetn) and exposes 5 fields with key fields Supplier, PartnerDescription, UnloadingPointName. Part of development package P_SLSSA_INTEGRATION_ODATA.

Data Sources (1)

SourceAliasJoin Type
I_DelivSchedSoldToPartyDetn I_DelivSchedSoldToPartyDetn from

Annotations (13)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Sold-to Party Assignment view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
AbapCatalog.sqlViewName ADSSOLDTODETN view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Supplier Supplier Supplier
KEY PartnerDescription PartnerDescription Partner Desc.
KEY UnloadingPointName UnloadingPointName Unloading Point Name
SoldToParty SoldToParty Sold-to Party
_Customer _Customer

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 A_DelivSchedSoldToPartyDetn.
-- 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 A_DelivSchedSoldToPartyDetn AS
SELECT
  Supplier,
  PartnerDescription,
  UnloadingPointName,
  SoldToParty
FROM I_DelivSchedSoldToPartyDetn
;