I_WorkCenterCapacityText
Capacity Description
I_WorkCenterCapacityText is a Composite CDS View that provides data about "Capacity Description" in SAP S/4HANA. It reads from 2 data sources (I_WorkCenterCapacity_2, I_CapacityText) and exposes 6 fields with key fields WorkCenterInternalID, WorkCenterTypeCode, CapacityCategoryAllocation, CapacityInternalID, Language.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_WorkCenterCapacity_2 | _Capacity | inner |
| I_CapacityText | _CapText | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IWRKCTRCAPTXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Capacity Description | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| VDM.viewType | #COMPOSITE | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | WorkCenterInternalID | I_WorkCenterCapacity_2 | WorkCenterInternalID | |
| KEY | WorkCenterTypeCode | I_WorkCenterCapacity_2 | WorkCenterTypeCode | |
| KEY | CapacityCategoryAllocation | I_WorkCenterCapacity_2 | CapacityCategoryAllocation | |
| KEY | CapacityInternalID | I_CapacityText | CapacityInternalID | |
| KEY | Language | Language | ||
| CapacityText | I_CapacityText | CapacityText |
@AbapCatalog.sqlViewName: 'IWRKCTRCAPTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Capacity Description'
@ObjectModel.usageType: { serviceQuality: #C, sizeCategory: #M, dataClass: #MASTER }
@VDM.viewType: #COMPOSITE
define view I_WorkCenterCapacityText
as select from I_CapacityText as _CapText
inner join I_WorkCenterCapacity_2 as _Capacity on _CapText.CapacityInternalID = _Capacity.CapacityInternalID
{
key _Capacity.WorkCenterInternalID as WorkCenterInternalID,
key _Capacity.WorkCenterTypeCode as WorkCenterTypeCode,
key _Capacity.CapacityCategoryAllocation as CapacityCategoryAllocation,
key _CapText.CapacityInternalID as CapacityInternalID,
key Language,
@Semantics.text: true
_CapText.CapacityText,
case when _Capacity.CapacityLastChangeDateTime is null then
cast('20190101120000' as kap_lastchange_datetime)
else _Capacity.CapacityLastChangeDateTime end as CapacityLastChangeDateTime
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CAPACITYTEXT",
"I_WORKCENTERCAPACITY_2"
],
"ASSOCIATED":
[],
"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