I_EntProjChangeIndicatorText

DDL: I_ENTPROJCHANGEINDICATORTEXT Type: view BASIC

Chg Ind Text for Chg Doc of Ent Proj

I_EntProjChangeIndicatorText is a Basic CDS View that provides data about "Chg Ind Text for Chg Doc of Ent Proj" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, ChangeDocItemChangeType. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t ChangeTypeText from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_EntProjChangeIndicator _Value $projection.ChangeDocItemChangeType = _Value.ChangeDocItemChangeType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (13)

NameValueLevelField
EndUserText.label Chg Ind Text for Chg Doc of Ent Proj view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AbapCatalog.sqlViewName IPROJCHGINDT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ChangeDocItemChangeType view
ObjectModel.usageType.serviceQuality B view
ObjectModel.usageType.sizeCategory M view
ObjectModel.usageType.dataClass CUSTOMIZING view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language dd07t ddlanguage Lang.
KEY ChangeDocItemChangeType
ChangeDocItemChangeTypeText dd07t ddtext Short text
_Value _Value
_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_EntProjChangeIndicatorText.
-- 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_EntProjChangeIndicatorText AS
SELECT
  ChangeTypeText.ddlanguage AS Language,
  cast (ChangeTypeText.domvalue_l as abap.char( 1 )) AS ChangeDocItemChangeType,
  ChangeTypeText.ddtext AS ChangeDocItemChangeTypeText
FROM dd07t AS ChangeTypeText
LEFT OUTER JOIN I_EntProjChangeIndicator AS _Value ON ChangeDocItemChangeType = _Value.ChangeDocItemChangeType  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;