C_SPItemDeliveryAddressTP_2

DDL: C_SPITEMDELIVERYADDRESSTP_2 Type: view_entity CONSUMPTION

Delivery Address for Item in SrcPrj - TP

C_SPItemDeliveryAddressTP_2 is a Consumption CDS View that provides data about "Delivery Address for Item in SrcPrj - TP" in SAP S/4HANA. It reads from 1 data source (R_SrcgProjItmDeliveryAddressTP) and exposes 33 fields with key field SrcgProjAddressUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
R_SrcgProjItmDeliveryAddressTP R_SrcgProjItmDeliveryAddressTP projection

Associations (1)

CardinalityTargetAliasCondition
[0..*] C_PlantAddressIDValueHelp _PlantAddressIDValueHelp $projection.FullName = _PlantAddressIDValueHelp.FullName

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
Metadata.allowExtensions true view
ObjectModel.representativeKey SrcgProjAddressUUID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #CONSUMPTION view
EndUserText.label Delivery Address for Item in SrcPrj - TP view

Fields (33)

KeyFieldSource TableSource FieldDescription
KEY SrcgProjAddressUUID SrcgProjAddressUUID Delivery Address UUID
SrcgProjAddressID SrcgProjAddressID Address Number in Sourcing Project
SourcingProjectUUID SourcingProjectUUID Sourcing Project UUID
SourcingProjectItemUUID SourcingProjectItemUUID Item UUID
FullName FullName Name
HouseNumber HouseNumber House Number
StreetName StreetName Text
CityName CityName Name
Region Region Venue Region
RegionNamelocalized
PostalCode PostalCode Postal Code
Country Country Venue: Ctry/Reg
CountryNamelocalized
SecondaryRegionName SecondaryRegionName County
DistrictName DistrictName District
Building Building Building code
RoomNumber RoomNumber Room Number
Floor Floor Floor
PhoneNumber PhoneNumber Telephone no.
EmailAddress EmailAddress E-Mail Address
FaxNumber FaxNumber Fax Number
POBox POBox PO Box
POBoxPostalCode POBoxPostalCode PO Box Postal Code
FormOfAddress FormOfAddress Title Key
AddressIsChangedManually AddressIsChangedManually Checkbox
ReferenceAddressID ReferenceAddressID Reference Address ID
ReferenceObjectID ReferenceObjectID Reference Object ID
ReferenceAddressType ReferenceAddressType Reference Address Type
SourcingOrigin SourcingOrigin Sourcing Origin
SrcgProjSourcingOriginTextlocalized
SourcingScenario SourcingScenario Integration Scenario
SrcgProjSourcingScenarioTextlocalized
_PlantAddressIDValueHelp _PlantAddressIDValueHelp

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_SPItemDeliveryAddressTP_2.
-- 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_SPItemDeliveryAddressTP_2 AS
SELECT
  SrcgProjAddressUUID,
  SrcgProjAddressID,
  SourcingProjectUUID,
  SourcingProjectItemUUID,
  FullName,
  HouseNumber,
  StreetName,
  CityName,
  Region,
  _RegionText.RegionName : localized AS RegionNamelocalized,
  PostalCode,
  Country,
  _CountryText.CountryName : localized AS CountryNamelocalized,
  SecondaryRegionName,
  DistrictName,
  Building,
  RoomNumber,
  Floor,
  PhoneNumber,
  EmailAddress,
  FaxNumber,
  POBox,
  POBoxPostalCode,
  FormOfAddress,
  AddressIsChangedManually,
  ReferenceAddressID,
  ReferenceObjectID,
  ReferenceAddressType,
  SourcingOrigin,
  _SrcgProjSourcingOriginText.SrcgProjSourcingOriginText : localized AS SrcgProjSourcingOriginTextlocalized,
  SourcingScenario,
  _SrcgProjSourcingScenarioText.SrcgProjSourcingScenarioText : localized AS SrcgProjSourcingScenarioTextlocalized
FROM R_SrcgProjItmDeliveryAddressTP
LEFT OUTER JOIN C_PlantAddressIDValueHelp AS _PlantAddressIDValueHelp ON FullName = _PlantAddressIDValueHelp.FullName  -- association [0..*]
;