I_PT_AcctgNumberRangeSeries

DDL: I_PT_ACCTGNUMBERRANGESERIES Type: view_entity COMPOSITE

PT Accounting Document NR Series

I_PT_AcctgNumberRangeSeries is a Composite CDS View that provides data about "PT Accounting Document NR Series" in SAP S/4HANA. It reads from 1 data source (P_PT_AccountingNumberRange) and exposes 12 fields with key fields VATRegistration, PT_SeriesIdentifier, PT_SeriesTypeCode, PT_SeriesDocumentClass, PT_SeriesDocumentType.

Data Sources (1)

SourceAliasJoin Type
P_PT_AccountingNumberRange P_PT_AccountingNumberRange from

Annotations (6)

NameValueLevelField
VDM.viewType #COMPOSITE view
AccessControl.authorizationCheck #CHECK view
EndUserText.label PT Accounting Document NR Series view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY VATRegistration VATRegistration VAT Registration No.
KEY PT_SeriesIdentifier
KEY PT_SeriesTypeCode PT_SeriesTypeCode
KEY PT_SeriesDocumentClass PT_SeriesDocumentClass
KEY PT_SeriesDocumentType PT_SeriesDocumentType SAF-T Document Type
PT_SeriesNumberRangeObject PT_SeriesNumberRangeObject
PT_SeriesNumberRangeSubObject PT_SeriesNumberRangeSubObject Subobject value
PT_SeriesNumberRangeInterval PT_SeriesNumberRangeInterval
PT_SeriesNumberRangeToYear PT_SeriesNumberRangeToYear
PT_SeriesBusinessProcess PT_SeriesBusinessProcess
PT_SeriesStartNumber
PT_SeriesValdtnCodeIsEditable

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_AcctgNumberRangeSeries.
-- 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_AcctgNumberRangeSeries AS
SELECT
  VATRegistration,
  cast( PT_SeriesIdentifier as glo_pt_series_id) AS PT_SeriesIdentifier,
  PT_SeriesTypeCode,
  PT_SeriesDocumentClass,
  PT_SeriesDocumentType,
  PT_SeriesNumberRangeObject,
  PT_SeriesNumberRangeSubObject,
  PT_SeriesNumberRangeInterval,
  PT_SeriesNumberRangeToYear,
  PT_SeriesBusinessProcess,
  cast( PT_SeriesStartNumber as glo_pt_series_sn ) AS PT_SeriesStartNumber,
  cast ( PT_SeriesValdtnCodeIsEditable as boole_d preserving type ) AS PT_SeriesValdtnCodeIsEditable
FROM P_PT_AccountingNumberRange
;