I_FldLogsSerialNmbrDeliveryDoc

DDL: I_FLDLOGSSERIALNMBRDELIVERYDOC SQL: IFLSEROBD Type: view COMPOSITE

Serial number for Delivery

I_FldLogsSerialNmbrDeliveryDoc is a Composite CDS View that provides data about "Serial number for Delivery" in SAP S/4HANA. It reads from 1 data source (I_SerialNumberDeliveryDocument) and exposes 4 fields with key fields Equipment, DeliveryDocument, DeliveryDocumentItem.

Data Sources (1)

SourceAliasJoin Type
I_SerialNumberDeliveryDocument I_SerialNumberDeliveryDocument from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IFLSEROBD view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Serial number for Delivery view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #A view
VDM.viewType #COMPOSITE view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Equipment Equipment Equipment check
KEY DeliveryDocument DeliveryDocument Outbound Delivery
KEY DeliveryDocumentItem DeliveryDocumentItem Outb. Delivery Item
SerialNumber SerialNumber Serial Number

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_FldLogsSerialNmbrDeliveryDoc.
-- 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: IFLSEROBD

CREATE VIEW I_FldLogsSerialNmbrDeliveryDoc AS
SELECT
  Equipment,
  DeliveryDocument,
  DeliveryDocumentItem,
  SerialNumber
FROM I_SerialNumberDeliveryDocument
;