I_AdvncdPlngSchedgSubModeText
Scheduling sub Mode - Text
I_AdvncdPlngSchedgSubModeText is a Basic CDS View that provides data about "Scheduling sub Mode - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields AdvncdPlngSchedgSubMode, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_AdvncdPlngSchedgSubMode | _SchedulingSubMode | $projection.AdvncdPlngSchedgSubMode = _SchedulingSubMode.AdvncdPlngSchedgSubMode |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Scheduling sub Mode - Text | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.dataCategory | #TEXT | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AdvncdPlngSchedgSubMode | |||
| KEY | Language | |||
| AdvncdPlngSchedgSubModeText | dd07t | ddtext | ||
| _SchedulingSubMode | _SchedulingSubMode | |||
| _Language | _Language |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Scheduling sub Mode - Text'
@VDM.viewType: #BASIC
// Dropdown list
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #S,
dataClass: #MASTER
}
@ObjectModel.dataCategory: #TEXT
define view entity I_AdvncdPlngSchedgSubModeText
as select from dd07t
association [0..1] to I_AdvncdPlngSchedgSubMode as _SchedulingSubMode on $projection.AdvncdPlngSchedgSubMode = _SchedulingSubMode.AdvncdPlngSchedgSubMode
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key cast (dd07t.domvalue_l as /sapapo/om_sched_res_sub_mode1 ) as AdvncdPlngSchedgSubMode,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key cast( dd07t.ddlanguage as spras preserving type ) as Language,
@Semantics.text: true
dd07t.ddtext as AdvncdPlngSchedgSubModeText,
_SchedulingSubMode,
_Language
}
where
domname = '/SAPAPO/CDPS_SCHED_SUB_MODE1'
and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_ADVNCDPLNGSCHEDGSUBMODE",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"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