I_DeliveryDocumentType

DDL: I_DELIVERYDOCUMENTTYPE SQL: ILEDELIVDOCTYPE Type: view BASIC

Delivery Document Type

I_DeliveryDocumentType (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Delivery Document Type · Supply Chain

I_DeliveryDocumentType is a Basic CDS View (Dimension) that provides data about "Delivery Document Type" in SAP S/4HANA. It reads from 1 data source (tvlk) and exposes 6 fields with key field DeliveryDocumentType. It has 1 association to related views.

SAP API Hub

StateC1
Line of BusinessSupply Chain
Application ComponentLE-SHP-GF
CapabilitiesData Source in SQL Select, Data Source for Defining CDS Entities, Analytical Dimension
PackageSupply Chain for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view is the basic interface view for delivery document type.</p> <p>You can use this CDS view to build your own consumption view on top.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
tvlk tvlk from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_DeliveryDocumentTypeText _Text $projection.DeliveryDocumentType = _Text.DeliveryDocumentType

Annotations (14)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey DeliveryDocumentType view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Delivery Document Type view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ILEDELIVDOCTYPE view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.sapObjectNodeType.name DeliveryDocumentType view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY DeliveryDocumentType lfart Settl Doc Type
SDDocumentCategory vbtyp SD Document Category
PrecedingDocumentRequirement aufer A sales order is required as basis for delivery
TradeComplianceIsActive itmac Trade Compliance is active
AR_ElectronicDocDocumentClass j_1adoccls Document Class
_Text _Text

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_DeliveryDocumentType.
-- 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: ILEDELIVDOCTYPE

CREATE VIEW I_DeliveryDocumentType AS
SELECT
  lfart AS DeliveryDocumentType,
  vbtyp AS SDDocumentCategory,
  aufer AS PrecedingDocumentRequirement,
  itmac AS TradeComplianceIsActive,
  j_1adoccls AS AR_ElectronicDocDocumentClass
FROM tvlk
LEFT OUTER JOIN I_DeliveryDocumentTypeText AS _Text ON DeliveryDocumentType = _Text.DeliveryDocumentType  -- association [0..*]
;