I_ARunSupProtMode
Supply Protection Execution Mode in ARun
I_ARunSupProtMode is a Basic CDS View that provides data about "Supply Protection Execution Mode in ARun" in SAP S/4HANA. It reads from 1 data source (dd07v) and exposes 3 fields with key fields ARunSupProtExecMode, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07v | dd07v | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IARNSUPMODE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | ARunSupProtExecMode | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| EndUserText.label | Supply Protection Execution Mode in ARun | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ARunSupProtExecMode | |||
| KEY | Language | ddlanguage | ||
| ARunSupProtExecModeText | ddtext |
@AbapCatalog.sqlViewName: 'IARNSUPMODE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'ARunSupProtExecMode'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.resultSet.sizeCategory: #XS
@EndUserText.label: 'Supply Protection Execution Mode in ARun'
@UI.presentationVariant: [{
sortOrder: [
{ by: 'ARunSupProtExecMode', direction: #ASC } ]
}]
define view I_ARunSupProtMode
as select from dd07v
{
@ObjectModel.text.element: [ 'ARunSupProtExecModeText' ]
key cast ( domvalue_l as arun_sup_logic ) as ARunSupProtExecMode,
@Semantics.language: true
key ddlanguage as Language,
@Semantics.text: true
@UI.hidden: true
ddtext as ARunSupProtExecModeText
}
where
domname = 'ARUN_SUP_LOGIC' //'ARUN_SUPPLY_SORT_TYPE'
and ddlanguage = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07V"
],
"ASSOCIATED":
[],
"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