I_PT_DeliveryNumberRange_2

DDL: I_PT_DELIVERYNUMBERRANGE_2 Type: view_entity BASIC Package: GLO-LOG-PT

Delivery Number Range

I_PT_DeliveryNumberRange_2 is a Basic CDS View that provides data about "Delivery Number Range" in SAP S/4HANA. It reads from 1 data source (sipt_numst_obd_c) and exposes 5 fields with key fields NumberRange, DeliveryDocumentType. Part of development package GLO-LOG-PT.

Data Sources (1)

SourceAliasJoin Type
sipt_numst_obd_c sipt_numst_obd_c from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Delivery Number Range view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY NumberRange nrrangenr Number Range
KEY DeliveryDocumentType lead_doctype Lead. Doc. type
PortugueseDgtlSignatureSeries series Series ID
CompanyCode bukrs Value
PT_SeriesDocumentType delivery_type SAF-T Document 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 I_PT_DeliveryNumberRange_2.
-- 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 I_PT_DeliveryNumberRange_2 AS
SELECT
  nrrangenr AS NumberRange,
  lead_doctype AS DeliveryDocumentType,
  series AS PortugueseDgtlSignatureSeries,
  bukrs AS CompanyCode,
  delivery_type AS PT_SeriesDocumentType
FROM sipt_numst_obd_c
;