I_TrsyPosPlndDataIsInclTxt

DDL: I_TRSYPOSPLNDDATAISINCLTXT SQL: ITRSYPLNDATINCLT Type: view BASIC

Planned Data Included - Text

I_TrsyPosPlndDataIsInclTxt is a Basic CDS View that provides data about "Planned Data Included - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields TrsyPosPlndDataIsInclusive, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_TrsyPosPlndDataIsInclVH _ValueHelp $projection.TrsyPosPlndDataIsInclusive = _ValueHelp.TrsyPosPlndDataIsInclusive
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ITRSYPLNDATINCLT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Planned Data Included - Text view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey TrsyPosPlndDataIsInclusive view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY TrsyPosPlndDataIsInclusive Lower Value
KEY Language dd07t ddlanguage Lang.
TrsyPosPlndDataInclusiveTxt
_ValueHelp _ValueHelp
_Language _Language

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_TrsyPosPlndDataIsInclTxt.
-- 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: ITRSYPLNDATINCLT

CREATE VIEW I_TrsyPosPlndDataIsInclTxt AS
SELECT
  cast( domvalue_l as ftr_gen_pos_planned_data_incl ) AS TrsyPosPlndDataIsInclusive,
  dd07t.ddlanguage AS Language,
  cast( dd07t.ddtext as ftr_gen_pos_plan_data_incl_txt preserving type ) AS TrsyPosPlndDataInclusiveTxt
FROM dd07t
LEFT OUTER JOIN I_TrsyPosPlndDataIsInclVH AS _ValueHelp ON TrsyPosPlndDataIsInclusive = _ValueHelp.TrsyPosPlndDataIsInclusive  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;