I_Eit_Import_Item_Status_Text

DDL: I_EIT_IMPORT_ITEM_STATUS_TEXT SQL: IEITTMPLIST Type: view

Extensibility Template: Tmpl Imp. Statu

I_Eit_Import_Item_Status_Text is a CDS View that provides data about "Extensibility Template: Tmpl Imp. Statu" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Code, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language _Language.Language = $projection.Language
[0..1] I_Eit_Import_Item_Status _Code _Code.Code = $projection.Code

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IEITTMPLIST view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label Extensibility Template: Tmpl Imp. Statu view
ObjectModel.representativeKey Code view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.resultSet.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Code Lower Value
KEY Language ddlanguage Lang.
Description ddtext Short text
_Code _Code
_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_Eit_Import_Item_Status_Text.
-- 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: IEITTMPLIST

CREATE VIEW I_Eit_Import_Item_Status_Text AS
SELECT
  cast( domvalue_l as eit_import_item_status ) AS Code,
  ddlanguage AS Language,
  ddtext AS Description
FROM dd07t
LEFT OUTER JOIN I_Language AS _Language ON _Language.Language = Language  -- association [0..1]
LEFT OUTER JOIN I_Eit_Import_Item_Status AS _Code ON _Code.Code = Code  -- association [0..1]
;