I_WorkBreakSchedule
Work Break Schedule
I_WorkBreakSchedule is a Basic CDS View (Dimension) that provides data about "Work Break Schedule" in SAP S/4HANA. It has 4 associations to related views.
Associations (4)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_WorkBreakScheduleText | _Text | $projection.WorkBreakSchedule = _Text.WorkBreakSchedule |
| [0..*] | I_WorkBreakScheduleText | _Text2 | $projection.WorkBreakSchedule = _Text2.WorkBreakSchedule and $projection.ShiftGrouping = _Text2.ShiftGrouping |
| [1..*] | I_WorkBreak | _WorkBreak | $projection.WorkBreakSchedule = _WorkBreak.WorkBreakSchedule |
| [1..1] | I_ShiftGrouping | _ShiftGrouping | $projection.ShiftGrouping = _ShiftGrouping.ShiftGrouping |
Annotations (19)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPPWORKBREAKSCH | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.internalName | #LOCAL | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Consumption.ranked | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| ObjectModel.representativeKey | WorkBreakSchedule | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| Search.searchable | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Work Break Schedule | view |
@AbapCatalog.sqlViewName: 'IPPWORKBREAKSCH'
@AbapCatalog.preserveKey: true
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@Analytics.internalName: #LOCAL
@ClientHandling.algorithm: #SESSION_VARIABLE
@Consumption.ranked: true
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #SEARCHABLE_ENTITY, #VALUE_HELP_PROVIDER]
@ObjectModel.representativeKey: 'WorkBreakSchedule'
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Work Break Schedule'
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view I_WorkBreakSchedule
as select distinct from tc37p as sched
association [0..*] to I_WorkBreakScheduleText as _Text on $projection.WorkBreakSchedule = _Text.WorkBreakSchedule
association [0..*] to I_WorkBreakScheduleText as _Text2 on $projection.WorkBreakSchedule = _Text2.WorkBreakSchedule
and $projection.ShiftGrouping = _Text2.ShiftGrouping
association [1..*] to I_WorkBreak as _WorkBreak on $projection.WorkBreakSchedule = _WorkBreak.WorkBreakSchedule
association [1..1] to I_ShiftGrouping as _ShiftGrouping on $projection.ShiftGrouping = _ShiftGrouping.ShiftGrouping
{
@ObjectModel.foreignKey.association: '_ShiftGrouping'
key sched.schgrup as ShiftGrouping,
@ObjectModel.text.association: '_Text2'
@Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
key sched.paplan as WorkBreakSchedule,
// Associations
_ShiftGrouping,
_WorkBreak,
@API.element.releaseState: #DEPRECATED
@API.element.successor: '_Text2'
_Text,
_Text2
};
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