I_WorkCenterGroupObjectCount
Count of objects per work center group
I_WorkCenterGroupObjectCount is a Composite CDS View that provides data about "Count of objects per work center group" in SAP S/4HANA. It reads from 1 data source (I_WorkCenterGroupStructure) and exposes 3 fields with key fields ObjectTypeCode, ObjectInternalID. Part of development package VDM_PP_WORKCENTER_GROUP.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_WorkCenterGroupStructure | I_WorkCenterGroupStructure | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #COMPOSITE | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| EndUserText.label | Count of objects per work center group | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ObjectTypeCode | ObjectTypeCode | ||
| KEY | ObjectInternalID | ObjectInternalID | ||
| WorkCenterGroupObjectCount |
@VDM.viewType: #COMPOSITE
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.usageType: {serviceQuality: #C, sizeCategory: #L, dataClass: #MIXED }
@EndUserText.label: 'Count of objects per work center group'
define view entity I_WorkCenterGroupObjectCount
as select from I_WorkCenterGroupStructure
{
key ObjectTypeCode,
key ObjectInternalID,
count(*) as WorkCenterGroupObjectCount
}
group by
ObjectInternalID,
ObjectTypeCode
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