I_PT_SeriesProcgCodeText

DDL: I_PT_SERIESPROCGCODETEXT Type: view_entity BASIC

Series Processing Code - Text

I_PT_SeriesProcgCodeText is a Basic CDS View that provides data about "Series Processing Code - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields Language, PT_SeriesProcgCode. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Lang $projection.Language = _Lang.Language

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Series Processing Code - Text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey PT_SeriesProcgCode view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language ddlanguage Lang.
KEY PT_SeriesProcgCode
PT_SeriesProcgCodeText ddtext Short text
_Lang _Lang

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_SeriesProcgCodeText.
-- 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_SeriesProcgCodeText AS
SELECT
  ddlanguage AS Language,
  cast( dd07t.domvalue_l as glo_pt_vc_mode ) AS PT_SeriesProcgCode,
  ddtext AS PT_SeriesProcgCodeText
FROM dd07t
LEFT OUTER JOIN I_Language AS _Lang ON Language = _Lang.Language  -- association [0..1]
;