I_WorkCenterCapAlloc

DDL: I_WORKCENTERCAPALLOC SQL: IWRKCTRCAPALLOC Type: view BASIC

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)

SourceAliasJoin Type
P_CRCA crca from

Annotations (11)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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        
}