I_WorkCenterCapAlloc
Work Center Capacity Allocation
I_WorkCenterCapAlloc is a Basic CDS View that provides data about "Work Center Capacity Allocation" in SAP S/4HANA. It reads from 1 data source (P_CRCA) and exposes 12 fields with key fields WorkCenterInternalID, WorkCenterTypeCode, CapacityCategoryAllocation, CapacityInternalID.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_CRCA | crca | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IWRKCTRCAPALLOC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| VDM.viewType | #BASIC | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Work Center Capacity Allocation | view |
Fields (12)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | WorkCenterInternalID | P_CRCA | objid | |
| KEY | WorkCenterTypeCode | P_CRCA | objty | |
| KEY | CapacityCategoryAllocation | P_CRCA | canum | |
| KEY | CapacityInternalID | P_CRCA | kapid | |
| LastChangeDate | P_CRCA | aedat_kapa | ||
| LastChangedByUser | P_CRCA | aenam_kapa | ||
| SetupCapRequirementFormula | P_CRCA | fork1 | ||
| ProcgCapRequirementFormula | P_CRCA | fork2 | ||
| TeardownCapRequirementFormula | P_CRCA | fork3 | ||
| OtherCapRequirementFormula | P_CRCA | forkn | ||
| ValidityStartDate | P_CRCA | begda | ||
| ValidityEndDate | P_CRCA | endda |
@AbapCatalog.sqlViewName: 'IWRKCTRCAPALLOC'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ObjectModel.usageType: {serviceQuality: #D, sizeCategory: #XL, dataClass: #TRANSACTIONAL}
@VDM.viewType: #BASIC
@Metadata.ignorePropagatedAnnotations: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Work Center Capacity Allocation'
define view I_WorkCenterCapAlloc
as select from P_CRCA as crca
{
key crca.objid as WorkCenterInternalID,
key crca.objty as WorkCenterTypeCode,
key crca.canum as CapacityCategoryAllocation,
key crca.kapid as CapacityInternalID ,
crca.aedat_kapa as LastChangeDate,
crca.aenam_kapa as LastChangedByUser,
crca.fork1 as SetupCapRequirementFormula,
crca.fork2 as ProcgCapRequirementFormula,
crca.fork3 as TeardownCapRequirementFormula,
crca.forkn as OtherCapRequirementFormula,
crca.begda as ValidityStartDate,
crca.endda as ValidityEndDate
}
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