I_LstMiRouteVisitToSDInvoice

DDL: I_LSTMIROUTEVISITTOSDINVOICE SQL: ILSTMIVSTOINV Type: view COMPOSITE

Last Mile Distribution Map Invc to Visit

I_LstMiRouteVisitToSDInvoice is a Composite CDS View that provides data about "Last Mile Distribution Map Invc to Visit" in SAP S/4HANA. It reads from 1 data source (I_SDDocumentProcessFlow) and exposes 3 fields with key fields LastMileRouteVisitUUID, Invoice.

Data Sources (1)

SourceAliasJoin Type
I_SDDocumentProcessFlow I_SDDocumentProcessFlow inner

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ILSTMIVSTOINV view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Last Mile Distribution Map Invc to Visit view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY LastMileRouteVisitUUID LastMileRouteVisitUUID
KEY Invoice SubsequentDocument
LastMileRouteUUID LastMileRouteUUID

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_LstMiRouteVisitToSDInvoice.
-- 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: ILSTMIVSTOINV

CREATE VIEW I_LstMiRouteVisitToSDInvoice AS
SELECT
  LastMileRouteVisitUUID,
  SubsequentDocument AS Invoice,
  LastMileRouteUUID
INNER JOIN I_SDDocumentProcessFlow ON /* join condition not captured in parsed metadata */
;