I_PurConditionText

DDL: I_PURCONDITIONTEXT SQL: IPURCONTEXT Type: view BASIC Package: APPL_MM_PUR_OA_CON

Text view for condition types

I_PurConditionText is a Basic CDS View that provides data about "Text view for condition types" in SAP S/4HANA. It reads from 1 data source (t685t) and exposes 6 fields with key fields ConditionType, ConditionApplication, Language. Part of development package APPL_MM_PUR_OA_CON.

Data Sources (1)

SourceAliasJoin Type
t685t ConditionText from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IPURCONTEXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ConditionType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
EndUserText.label Text view for condition types view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ConditionType t685t kschl Tax Item Type
KEY ConditionApplication t685t kappl Application
_Text _Text
KEY Language t685t spras Off. Language
ConditionText t685t vtext Description
ConditionUsage t685t kvewe Usage

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_PurConditionText.
-- 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: IPURCONTEXT

CREATE VIEW I_PurConditionText AS
SELECT
  ConditionText.kschl AS ConditionType,
  ConditionText.kappl AS ConditionApplication,
  ConditionText.spras AS Language,
  ConditionText.vtext AS ConditionText,
  ConditionText.kvewe AS ConditionUsage
FROM t685t AS ConditionText
;