I_ARunSupSortStaticAttribText
Supply Sort Static Attrib. Text
I_ARunSupSortStaticAttribText is a Basic CDS View that provides data about "Supply Sort Static Attrib. Text" in SAP S/4HANA. It reads from 1 data source (dd07v) and exposes 3 fields with key fields ARunSupSortStaticAttrib, Language. It is exposed through 1 OData service (UI_RFM_SUPPLY_SORTRULE). It is used in 1 Fiori application: Configure Supply Sort Rule.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07v | dd07v | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IARNSUSTATTTXT | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | ARunSupSortStaticAttrib | 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 | Supply Sort Static Attrib. Text | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_RFM_SUPPLY_SORTRULE | UI_RFM_SUPPLY_SORTRULE | V2 | C1 | NOT_RELEASED |
Fiori Apps (1)
| App ID | App Name | Type | Description |
|---|---|---|---|
| F4057 | Configure Supply Sort Rule | Transactional | An application to configure supply sorting rules which are used in Supply Assignment Run. |
Configure Supply Sort Rule
Business Role: Order Fulfillment Manager (Retail)
This transactional application allows you to create static or dynamic sort attributes for a supply sort rule. The supply sort rules defined using this app are used during supply assignment in backorder processing (BOP), insight to action (ITA), or immediate assignment processes.
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ARunSupSortStaticAttrib | domvalue_l | ||
| KEY | Language | dd07v | ddlanguage | |
| ARunSupSortStaticAttribDesc | ddtext |
@AbapCatalog.sqlViewName: 'IARNSUSTATTTXT'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'ARunSupSortStaticAttrib'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.resultSet.sizeCategory: #XS
@EndUserText.label: 'Supply Sort Static Attrib. Text'
define view I_ARunSupSortStaticAttribText
as select from dd07v
{
@ObjectModel.text.element: [ 'ARunSupSortStaticAttribDesc' ]
key domvalue_l as ARunSupSortStaticAttrib,
@Semantics.language: true
key dd07v.ddlanguage as Language,
@Semantics.text: true
@UI.hidden: true
ddtext as ARunSupSortStaticAttribDesc
}
where
domname = 'ARUN_SORT_FIELD' and
ddlanguage = $session.system_language
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