I_ShiftSequence
Shift Sequence Code
I_ShiftSequence is a Basic CDS View (Dimension) that provides data about "Shift Sequence Code" in SAP S/4HANA. It has 3 associations to related views.
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_ShiftGrouping | _ShiftGrouping | $projection.ShiftGrouping = _ShiftGrouping.ShiftGrouping |
| [0..*] | I_ShiftSequenceText | _Text | $projection.ShiftSequence = _Text.ShiftSequence |
| [0..*] | I_ShiftSequenceText | _Text2 | $projection.ShiftGrouping = _Text2.ShiftGrouping and $projection.ShiftSequence = _Text2.ShiftSequence |
Annotations (22)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPPSHIFTSEQUENCE | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #GENERIC | view | |
| AbapCatalog.buffering.numberOfKeyFields | 002 | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | 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 | ShiftSequence | 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 | Shift Sequence Code | view |
@AbapCatalog.sqlViewName: 'IPPSHIFTSEQUENCE'
--@AbapCatalog.buffering: {status: #ACTIVE, type: #GENERIC, numberOfKeyFields: 002}
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: 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, #SEARCHABLE_ENTITY, #VALUE_HELP_PROVIDER]
@ObjectModel.representativeKey: 'ShiftSequence'
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Shift Sequence Code'
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view I_ShiftSequence
as select distinct from tc38a as seq
association [1..1] to I_ShiftGrouping as _ShiftGrouping on $projection.ShiftGrouping = _ShiftGrouping.ShiftGrouping
association [0..*] to I_ShiftSequenceText as _Text on $projection.ShiftSequence = _Text.ShiftSequence
association [0..*] to I_ShiftSequenceText as _Text2 on $projection.ShiftGrouping = _Text2.ShiftGrouping
and $projection.ShiftSequence = _Text2.ShiftSequence
{
@ObjectModel.foreignKey.association: '_ShiftGrouping'
key seq.schgrup as ShiftGrouping,
@ObjectModel.text.association: '_Text2'
@Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
key seq.sprog as ShiftSequence,
// Associations
_ShiftGrouping,
@API.element.releaseState: #DEPRECATED
@API.element.successor: '_Text2'
_Text,
_Text2
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TC38A"
],
"ASSOCIATED":
[
"I_SHIFTGROUPING",
"I_SHIFTSEQUENCETEXT"
],
"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