C_SAFTDeliverySerialNumber

DDL: C_SAFTDELIVERYSERIALNUMBER SQL: CSAFTDELSERN Type: view CONSUMPTION

PT SAFT MOG Serial Number

C_SAFTDeliverySerialNumber is a Consumption CDS View that provides data about "PT SAFT MOG Serial Number" in SAP S/4HANA. It reads from 3 data sources (I_SAFTDeliveryItem, I_MaintItmObjListDeliveryDoc, I_MaintenanceItemObject) and exposes 3 fields with key fields DeliveryDocument, DeliveryDocumentItem, SerialNumber.

Data Sources (3)

SourceAliasJoin Type
I_SAFTDeliveryItem a from
I_MaintItmObjListDeliveryDoc b inner
I_MaintenanceItemObject c inner

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CSAFTDELSERN view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #X view
AbapCatalog.preserveKey true view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label PT SAFT MOG Serial Number view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY DeliveryDocument I_SAFTDeliveryItem DeliveryDocument Outbound Delivery
KEY DeliveryDocumentItem I_SAFTDeliveryItem DeliveryDocumentItem Outb. Delivery Item
KEY SerialNumber I_MaintenanceItemObject 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 C_SAFTDeliverySerialNumber.
-- 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: CSAFTDELSERN

CREATE VIEW C_SAFTDeliverySerialNumber AS
SELECT
  a.DeliveryDocument AS DeliveryDocument,
  a.DeliveryDocumentItem AS DeliveryDocumentItem,
  c.SerialNumber AS SerialNumber
FROM I_SAFTDeliveryItem AS a
INNER JOIN I_MaintItmObjListDeliveryDoc AS b ON /* join condition not captured in parsed metadata */
INNER JOIN I_MaintenanceItemObject AS c ON /* join condition not captured in parsed metadata */
;