C_AllocationCycleRunGroupVH

DDL: C_ALLOCATIONCYCLERUNGROUPVH SQL: CCYCLERUNGRPVH Type: view CONSUMPTION Package: ODATA_ALLOCATION_RUN_GROUP

Cycle Run Group

C_AllocationCycleRunGroupVH is a Consumption CDS View that provides data about "Cycle Run Group" in SAP S/4HANA. It reads from 1 data source (I_CycleRunGroup) and exposes 10 fields with key fields AllocationType, AllocationCycleRunGroup, AllocationCycleRunGroupText, AllocationPostingType, AllocationActualPlanVariant. It is exposed through 1 OData service (FCO_ALLOCATION_RUN_GROUP). It is used in 1 Fiori application: Manage Cycle Run Groups. Part of development package ODATA_ALLOCATION_RUN_GROUP.

Data Sources (1)

SourceAliasJoin Type
I_CycleRunGroup I_CycleRunGroup from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName CCYCLERUNGRPVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Cycle Run Group view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
Search.searchable true view
ObjectModel.dataCategory #VALUE_HELP view
Metadata.ignorePropagatedAnnotations true view
UI.presentationVariant.sortOrder.by AllocationCycleRunGroup view
UI.presentationVariant.sortOrder.direction #ASC view

OData Services (1)

ServiceBindingVersionContractRelease
FCO_ALLOCATION_RUN_GROUP FCO_ALLOCATION_RUN_GROUP V2 C1 NOT_RELEASED

Fiori Apps (1)

App IDApp NameTypeDescription
F4935 Manage Cycle Run Groups Transactional You use this app to manage your allocation cycle run groups. With this Fiori application, user can maintain cycle run groups and assign allocation cycles into the run groups. With grouping provided, parallel processing of allocation cycles is possible.

Manage Cycle Run Groups

Business Role: Cost Accountant - Overhead

With this app, you can organize allocation cycles into groups to enable parallel processing. If you don't organize your allocation cycles into groups, the cycles are always processed sequentially. This can be time consuming. A cycle run group is always processed in parallel with other cycle run groups, so you can significantly reduce the processing time if you organize your allocation cycles into groups. The allocation cycles within a single group are processed sequentially, but in parallel with other groups.

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY AllocationType AllocationType
KEY AllocationCycleRunGroup AllocationCycleRunGroup
KEY AllocationCycleRunGroupText Object Description
KEY AllocationPostingType AllocationPostingType
KEY AllocationActualPlanVariant AllocationActualPlanVariant
KEY Ledger Ledger
LedgerName
AllocationContextTypeText
AllocationPostingTypeText
AllocActualPlanVariantText
@AbapCatalog.sqlViewName: 'CCYCLERUNGRPVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@VDM.viewType: #CONSUMPTION
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Cycle Run Group'
@ObjectModel.usageType: { dataClass: #MASTER,
                          serviceQuality: #C,
                          sizeCategory: #M
            }
@Search.searchable: true
@ObjectModel.dataCategory: #VALUE_HELP
@Metadata.ignorePropagatedAnnotations: true
@UI.presentationVariant.sortOrder.by: 'AllocationCycleRunGroup'
@UI.presentationVariant.sortOrder.direction: #ASC
define view C_AllocationCycleRunGroupVH
  as select from I_CycleRunGroup
{
      @UI.hidden: true
  key AllocationType,
      @UI.selectionField          : [{ position: 10 }]
      @ObjectModel.text.element   : ['AllocationCycleRunGroupText']
      @UI.textArrangement         : #TEXT_LAST
      @Search                     : { defaultSearchElement: true, fuzzinessThreshold: 0.8 }
  key AllocationCycleRunGroup,
      @UI.selectionField          : [{ position: 60 }]
      @Semantics.text           : true
      @Search                   : { defaultSearchElement: true, fuzzinessThreshold: 0.8 }
      @EndUserText.label        : 'Object Description'
  key _Text[Language = $session.system_language ].AllocationCycleRunGroupText,
      @UI.hidden: true
  key AllocationPostingType,
      @UI.hidden: true
  key AllocationActualPlanVariant,
      @UI.selectionField          : [{ position: 40 }]
      @Consumption.valueHelpDefinition: [ { entity: { name: 'C_AllocationLedgerVH', element: 'Ledger'  } } ]
      @ObjectModel.text.element: ['LedgerName']
      @UI.textArrangement: #TEXT_LAST
      @Consumption.filter: { selectionType: #SINGLE, multipleSelections: true, mandatory: false }
  key Ledger,
      @Semantics.text: true
      @Consumption.filter.hidden: true
      @UI.hidden: true
      _Ledger._Text[Language = $session.system_language ].LedgerName,
      @Semantics.text: true
      @Consumption.valueHelpDefinition: [ { entity: { name: 'C_AllocationContextVH', element: 'AllocationContextTypeText'  } } ]
      @UI.textArrangement         : #TEXT_ONLY
      @UI.selectionField          : [{ position: 20 }]      
      _Context._Text[Language = $session.system_language ].AllocationContextTypeText,
      @Semantics.text: true     
      @Consumption.valueHelpDefinition: [ { entity: { name: 'C_MngCycRunGrpAllocationTypeVH', element: 'AllocationPostingTypeText'  } } ]
      @UI.textArrangement         : #TEXT_ONLY
      @UI.selectionField : [ { position: 30} ]
      _AllocPostingType._Text[Language = $session.system_language ].AllocationPostingTypeText,
      @Semantics.text: true
      @Consumption.valueHelpDefinition: [ { entity: { name: 'C_AllocActualPlanVariantVH', element: 'AllocActualPlanVariantText'  } } ]
      @UI.textArrangement         : #TEXT_ONLY
      @UI.selectionField          : [{ position: 50 }]
      _AllocActualPlanVariant._Text[Language = $session.system_language ].AllocActualPlanVariantText
}