C_DelivSchedSoldToPartyDetnTP

DDL: C_DELIVSCHEDSOLDTOPARTYDETNTP SQL: CDSSOLDTODETN Type: view CONSUMPTION Package: ODATA_SD_SCHEDULINGAGREEMENT

Assign Sold-to Party for Delivery Schedule

C_DelivSchedSoldToPartyDetnTP is a Consumption CDS View that provides data about "Assign Sold-to Party for Delivery Schedule" in SAP S/4HANA. It reads from 1 data source (I_DelivSchedSoldToPartyDetnTP) and exposes 9 fields with key fields Supplier, PartnerDescription, UnloadingPointName. It has 1 association to related views. It is exposed through 1 OData service (ASQL_F3894). Part of development package ODATA_SD_SCHEDULINGAGREEMENT.

Data Sources (1)

SourceAliasJoin Type
I_DelivSchedSoldToPartyDetnTP I_DelivSchedSoldToPartyDetnTP from

Associations (1)

CardinalityTargetAliasCondition
[0..1] C_SoldToValueHelp _SoldToParty $projection.SoldToParty = _SoldToParty.Customer

Annotations (12)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
VDM.viewType #CONSUMPTION view
AbapCatalog.sqlViewName CDSSOLDTODETN view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Assign Sold-to Party for Delivery Schedule view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
Metadata.allowExtensions true view
Search.searchable true view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F3894 ASQL_F3894 C2 NOT_RELEASED

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY Supplier Supplier Supplier
KEY PartnerDescription Plant Valuation Area
KEY UnloadingPointName UnloadingPointName Unloading Point Name
SupplierForEdit SupplierForEdit Supplier
PartnerDescriptionForEdit PlantForEdit Plant ID
UnloadingPointNameForEdit UnloadingPointNameForEdit Unloading Point
SoldToParty SoldToParty Sold-to Party
CustomerName _SoldToParty OrganizationBPName1 Name 1
_SoldToParty _SoldToParty

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_DelivSchedSoldToPartyDetnTP.
-- 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: CDSSOLDTODETN

CREATE VIEW C_DelivSchedSoldToPartyDetnTP AS
SELECT
  Supplier,
  Plant AS PartnerDescription,
  UnloadingPointName,
  SupplierForEdit,
  PlantForEdit AS PartnerDescriptionForEdit,
  UnloadingPointNameForEdit,
  SoldToParty,
  _SoldToParty.OrganizationBPName1 AS CustomerName
FROM I_DelivSchedSoldToPartyDetnTP
LEFT OUTER JOIN C_SoldToValueHelp AS _SoldToParty ON SoldToParty = _SoldToParty.Customer  -- association [0..1]
;