P_PT_SimplifiedDelivDocType

DDL: P_PT_SIMPLIFIEDDELIVDOCTYPE Type: view_entity BASIC

Document Types for Simplified Deliveries

P_PT_SimplifiedDelivDocType is a Basic CDS View that provides data about "Document Types for Simplified Deliveries" in SAP S/4HANA. It reads from 1 data source (sipt_sdt_obd) and exposes 2 fields with key field DeliveryDocumentType.

Data Sources (1)

SourceAliasJoin Type
sipt_sdt_obd sipt_sdt_obd from

Annotations (6)

NameValueLevelField
VDM.private true view
VDM.viewType #BASIC view
EndUserText.label Document Types for Simplified Deliveries view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY DeliveryDocumentType lead_doctype Lead. Doc. type
SpecialDocumentType special_type Special Doc. Type

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 P_PT_SimplifiedDelivDocType.
-- 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 P_PT_SimplifiedDelivDocType AS
SELECT
  lead_doctype AS DeliveryDocumentType,
  special_type AS SpecialDocumentType
FROM sipt_sdt_obd
;