I_ARunStockSourceType
Supply Protection Planning Period Type
I_ARunStockSourceType is a Basic CDS View that provides data about "Supply Protection Planning Period Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field ARunStockSourceType. It has 1 association to related views. Part of development package ARUN_SUPPLY_SELECTION_RULE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | ValueProvider | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_ArunStockSourceTypeText | _Text | |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.representativeKey | ARunStockSourceType | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| EndUserText.label | Supply Protection Planning Period Type | view | |
| VDM.viewType | #BASIC | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ARunStockSourceType | |||
| DomainValue | dd07l | domvalue_l | ||
| _Text | _Text |
@ObjectModel: { dataCategory: #VALUE_HELP,
representativeKey: 'ARunStockSourceType',
resultSet: { sizeCategory: #XS },
usageType: { serviceQuality: #A,
dataClass: #META,
sizeCategory: #S } }
@EndUserText.label: 'Supply Protection Planning Period Type'
@VDM.viewType: #BASIC
/*+[hideWarning] { "IDS" : [ "CALCULATED_FIELD_CHECK", "KEY_CHECK" ] } */
define root view entity I_ARunStockSourceType
as select from dd07l as ValueProvider
composition [0..*] of I_ArunStockSourceTypeText as _Text
{
@ObjectModel.text.association: '_Text'
key cast( ValueProvider.domvalue_l as arun_bskz ) as ARunStockSourceType,
@Consumption.hidden: true
ValueProvider.domvalue_l as DomainValue,
_Text
}
where
ValueProvider.domname = 'ARUN_BSKZ'
and ValueProvider.as4local = 'A'
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