I_REConditionAttributeText
Condition Attribute Text
I_REConditionAttributeText is a Basic CDS View that provides data about "Condition Attribute Text" in SAP S/4HANA. It reads from 1 data source (tivcdpropt) and exposes 5 fields with key fields Language, REConditionAttribute. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tivcdpropt | tivcdpropt | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_REConditionAttribute | _REConditionAttribute | $projection.REConditionAttribute = _REConditionAttribute.REConditionAttribute |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IRECNDNATTRT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Condition Attribute Text | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | spras | ||
| KEY | REConditionAttribute | condprop | ||
| REConditionAttributeName | xcondprop | |||
| _REConditionAttribute | _REConditionAttribute | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IRECNDNATTRT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Condition Attribute Text'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.dataCategory:#TEXT
@ObjectModel.representativeKey: ['REConditionAttribute']
@ObjectModel.semanticKey: ['REConditionAttribute']
@VDM.viewType:#BASIC
define view I_REConditionAttributeText
as select from tivcdpropt
association [0..1] to I_REConditionAttribute as _REConditionAttribute on $projection.REConditionAttribute = _REConditionAttribute.REConditionAttribute
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key spras as Language,
@ObjectModel.foreignKey.association: '_REConditionAttribute'
key condprop as REConditionAttribute,
@Semantics.text: true
xcondprop as REConditionAttributeName,
_REConditionAttribute,
_Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TIVCDPROPT"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_RECONDITIONATTRIBUTE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA