R_LstMiRteVstCustDlvTextTP

DDL: R_LSTMIRTEVSTCUSTDLVTEXTTP Type: view_entity TRANSACTIONAL

LMD Route Visit Cust Delivery Text - TP

R_LstMiRteVstCustDlvTextTP is a Transactional CDS View that provides data about "LMD Route Visit Cust Delivery Text - TP" in SAP S/4HANA. It reads from 1 data source (I_LastMileRouteText) and exposes 11 fields with key field LastMileRouteTextUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_LastMileRouteText I_LastMileRouteText from

Associations (1)

CardinalityTargetAliasCondition
[1..1] R_LstMiRouteTP _Route $projection.LastMileRouteUUID = _Route.LastMileRouteUUID

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label LMD Route Visit Cust Delivery Text - TP view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY LastMileRouteTextUUID LastMileRouteTextUUID UUID
Language Language Report Text Language
LastMileRouteUUID LastMileRouteUUID Route UUID
LastMileRouteParentUUID LastMileRouteParentUUID UUID
LstMiRteTxtRefDocumentType LstMiRteTxtRefDocumentType Ref. procedure
LstMiRteTxtReferenceDocument LstMiRteTxtReferenceDocument Ref. Document No.
LastMileRouteTextType LastMileRouteTextType Type of Referenced Texts
LastMileRouteOriginCode LastMileRouteOriginCode Origin
LastMileRouteText LastMileRouteText Text Content
_Route _Route
_CustomerDelivery _CustomerDelivery

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 R_LstMiRteVstCustDlvTextTP.
-- 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 R_LstMiRteVstCustDlvTextTP AS
SELECT
  LastMileRouteTextUUID,
  Language,
  LastMileRouteUUID,
  LastMileRouteParentUUID,
  LstMiRteTxtRefDocumentType,
  LstMiRteTxtReferenceDocument,
  LastMileRouteTextType,
  LastMileRouteOriginCode,
  LastMileRouteText
FROM I_LastMileRouteText
LEFT OUTER JOIN R_LstMiRouteTP AS _Route ON LastMileRouteUUID = _Route.LastMileRouteUUID  -- association [1..1]
;