R_CycleRunGroupTP
Cycle Run Group
R_CycleRunGroupTP is a Transactional CDS View that provides data about "Cycle Run Group" in SAP S/4HANA. It reads from 1 data source (I_CycleRunGroup) and exposes 12 fields with key fields AllocationType, AllocationCycleRunGroup, AllocationPostingType, AllocationActualPlanVariant, Ledger. It has 3 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CycleRunGroup | I_CycleRunGroup | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | R_AllocationCycleTP | _AllocationCycle | $projection.AllocationType = _AllocationCycle.AllocationType and $projection.Ledger = _AllocationCycle.Ledger and $projection.AllocationCycleRunGroup = _AllocationCycle.AllocationCycleRunGroup and $projection.AllocationPostingType = _AllocationCycle.AllocationPostingType and $projection.AllocationActualPlanVariant = _AllocationCycle.AllocationActualPlanVariant |
| [0..*] | R_CycleRunGroupTextTP | _Text | |
| [0..1] | R_CycleRunGroupNoteTP | _Note | |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Cycle Run Group | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.sapObjectNodeType.name | AllocationPostingType | view |
Fields (12)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AllocationType | AllocationType | ||
| KEY | AllocationCycleRunGroup | AllocationCycleRunGroup | ||
| KEY | AllocationPostingType | AllocationPostingType | ||
| KEY | AllocationActualPlanVariant | AllocationActualPlanVariant | ||
| KEY | Ledger | Ledger | ||
| _Text | _Text | |||
| _Context | _Context | |||
| _AllocPostingType | _AllocPostingType | |||
| _AllocActualPlanVariant | _AllocActualPlanVariant | |||
| _Note | _Note | |||
| _Ledger | _Ledger | |||
| _AllocationCycle | _AllocationCycle |
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Cycle Run Group'
@VDM: {
viewType: #TRANSACTIONAL,
lifecycle.contract.type: #SAP_INTERNAL_API }
@ObjectModel.usageType: { dataClass: #MIXED,
serviceQuality: #C,
sizeCategory: #M
}
@ObjectModel.sapObjectNodeType.name: 'AllocationPostingType'
define root view entity R_CycleRunGroupTP
as select from I_CycleRunGroup
composition [0..*] of R_CycleRunGroupTextTP as _Text
composition [0..1] of R_CycleRunGroupNoteTP as _Note
association [0..*] to R_AllocationCycleTP as _AllocationCycle on $projection.AllocationType = _AllocationCycle.AllocationType
and $projection.Ledger = _AllocationCycle.Ledger
and $projection.AllocationCycleRunGroup = _AllocationCycle.AllocationCycleRunGroup
and $projection.AllocationPostingType = _AllocationCycle.AllocationPostingType
and $projection.AllocationActualPlanVariant = _AllocationCycle.AllocationActualPlanVariant
{
key AllocationType,
key AllocationCycleRunGroup,
key AllocationPostingType,
key AllocationActualPlanVariant,
key Ledger,
_Text,
_Context,
_AllocPostingType,
_AllocActualPlanVariant,
_Note,
_Ledger,
_AllocationCycle
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CYCLERUNGROUP"
],
"ASSOCIATED":
[
"I_ALLOCACTUALPLANVARIANT",
"I_ALLOCATIONCONTEXTTYPE",
"I_ALLOCATIONPOSTINGTYPE",
"I_LEDGER",
"R_ALLOCATIONCYCLETP",
"R_CYCLERUNGROUPNOTETP",
"R_CYCLERUNGROUPTEXTTP"
],
"BASE":
[
"I_CYCLERUNGROUP"
],
"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