I_Storageconditiontext
Value help for storage condition text
I_Storageconditiontext is a Basic CDS View that provides data about "Value help for storage condition text" in SAP S/4HANA. It reads from 1 data source (t142t) and exposes 4 fields with key fields StorageConditions, Language. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t142t | t142t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Storagecondition | _StorageCondition | $projection.StorageConditions = _StorageCondition.StorageConditions |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISTORAGE_TEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #FULL | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Value help for storage condition text | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | StorageConditions | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Search.searchable | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | StorageConditions | raube | ||
| KEY | Language | t142t | spras | |
| StorageConditionName | rbtxt | |||
| _StorageCondition | _StorageCondition |
@AbapCatalog:{
sqlViewName: 'ISTORAGE_TEXT',
compiler.compareFilter: true,
preserveKey: true,
buffering:{
status: #ACTIVE,
type: #FULL
}
}
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Value help for storage condition text'
@ObjectModel:{
dataCategory: #TEXT,
representativeKey: 'StorageConditions',
usageType:{
serviceQuality: #A,
sizeCategory : #S,
dataClass: #CUSTOMIZING
}
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true
define view I_Storageconditiontext
as select from t142t
association [1..1] to I_Storagecondition as _StorageCondition on $projection.StorageConditions = _StorageCondition.StorageConditions
{
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
@ObjectModel.foreignKey.association: '_StorageCondition'
key raube as StorageConditions,
@Semantics.language: true
key t142t.spras as Language,
@Semantics.text: true
@Search.defaultSearchElement: true
@Search.ranking: #LOW
@Search.fuzzinessThreshold: 0.8
rbtxt as StorageConditionName,
_StorageCondition
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T142T"
],
"ASSOCIATED":
[
"I_STORAGECONDITION"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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