I_ARunSupSortOrderText
Static Attribute Sort order Text
I_ARunSupSortOrderText is a Basic CDS View that provides data about "Static Attribute Sort order Text" in SAP S/4HANA. It reads from 1 data source (dd07v) and exposes 3 fields with key fields ARunSupplySortOrder, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07v | dd07v | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IARNSRTODRTXT | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | ARunSupplySortOrder | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| EndUserText.label | Static Attribute Sort order Text | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ARunSupplySortOrder | domvalue_l | ||
| KEY | Language | dd07v | ddlanguage | |
| ARunSupplySortOrderDesc | ddtext |
@AbapCatalog.sqlViewName: 'IARNSRTODRTXT'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'ARunSupplySortOrder'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.resultSet.sizeCategory: #XS
@EndUserText.label: 'Static Attribute Sort order Text'
define view I_ARunSupSortOrderText
as select from dd07v
{
@ObjectModel.text.element: [ 'ARunSupplySortOrderDesc' ]
key domvalue_l as ARunSupplySortOrder,
@Semantics.language: true
key dd07v.ddlanguage as Language,
@Semantics.text: true
@UI.hidden: true
ddtext as ARunSupplySortOrderDesc
}
where
domname = 'ARUN_SORT_ORDER' and
ddlanguage = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07V"
],
"ASSOCIATED":
[],
"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