I_ConditionUsageText

DDL: I_CONDITIONUSAGETEXT SQL: ICNDUSAGETEXT Type: view BASIC

Condition Usage - Text

I_ConditionUsageText is a Basic CDS View that provides data about "Condition Usage - Text" in SAP S/4HANA. It reads from 1 data source (t681w) and exposes 3 fields with key fields Language, ConditionUsage.

Data Sources (1)

SourceAliasJoin Type
t681w t681w from

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName ICNDUSAGETEXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Condition Usage - Text view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ConditionUsage view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language spras Off. Language
KEY ConditionUsage kvewe Usage
ConditionUsageName vtext Wgh.Dat.Ty.Txt.

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_ConditionUsageText.
-- 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: ICNDUSAGETEXT

CREATE VIEW I_ConditionUsageText AS
SELECT
  spras AS Language,
  kvewe AS ConditionUsage,
  vtext AS ConditionUsageName
FROM t681w
;