I_SchedulingSchema
Scheduling Schema
I_SchedulingSchema is a Basic CDS View that provides data about "Scheduling Schema" in SAP S/4HANA. It reads from 1 data source (bps_schema) and exposes 4 fields with key field SchedulingSchema. It has 2 associations to related views. Part of development package BPS_VDM.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| bps_schema | SchedulingSchema | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_SchedulingSchemaText | _Text | $projection.SchedulingSchema = _Text.SchedulingSchema |
| [1..1] | I_SchedgSchemaTmeGranularity | _TimeGranularity | $projection.SchedgSchemaTimeGranularity = _TimeGranularity.SchedgSchemaTimeGranularity |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Scheduling Schema | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.representativeKey | SchedulingSchema | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #ORGANIZATIONAL | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SchedulingSchema | schema_id | ||
| SchedgSchemaTimeGranularity | time_granularity | |||
| _TimeGranularity | _TimeGranularity | |||
| _Text | _Text |
@EndUserText.label: 'Scheduling Schema'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.viewEnhancementCategory: [#NONE]
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: {
representativeKey: 'SchedulingSchema',
usageType: {
serviceQuality: #C,
sizeCategory: #S,
dataClass: #ORGANIZATIONAL
}
}
define view entity I_SchedulingSchema
as select from bps_schema as SchedulingSchema
association [0..*] to I_SchedulingSchemaText as _Text on $projection.SchedulingSchema = _Text.SchedulingSchema
association [1..1] to I_SchedgSchemaTmeGranularity as _TimeGranularity on $projection.SchedgSchemaTimeGranularity = _TimeGranularity.SchedgSchemaTimeGranularity
{
@Semantics.text: true
key schema_id as SchedulingSchema,
@ObjectModel.foreignKey.association: '_TimeGranularity'
time_granularity as SchedgSchemaTimeGranularity,
_TimeGranularity,
_Text
}
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