I_ARunStatusText
Supply Assignment Status
I_ARunStatusText is a Basic CDS View that provides data about "Supply Assignment Status" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields SupplyAssignmentStatus, Language. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | txt | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IARNSTSTXT | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | SupplyAssignmentStatus | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| Search.searchable | true | view | |
| EndUserText.label | Supply Assignment Status | view |
@AbapCatalog.sqlViewName: 'IARNSTSTXT'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'SupplyAssignmentStatus'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #X
@AbapCatalog.compiler.compareFilter:true
@AbapCatalog.preserveKey:true
@Search.searchable: true
@EndUserText.label: 'Supply Assignment Status'
define view I_ARunStatusText
as select from dd07t as txt
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Search: {
defaultSearchElement: true,
fuzzinessThreshold: 0.8,
ranking: #HIGH
}
@EndUserText.label: 'Supply Assignment Status'
key txt.domvalue_l as SupplyAssignmentStatus,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
@EndUserText.label: 'Language'
key txt.ddlanguage as Language,
@Semantics.text: true
@EndUserText.label: 'Supply Assignment Status Description'
txt.ddtext as SupplyAssignmentStatusName,
_Language
}
where
domname = 'ARUN_STAT'
and ddlanguage = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"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