C_DefectMngDefectsForTransfer

DDL: C_DEFECTMNGDEFECTSFORTRANSFER SQL: CDEFECTMNGDFT Type: view CONSUMPTION

Defects for Transfer

C_DefectMngDefectsForTransfer is a Consumption CDS View that provides data about "Defects for Transfer" in SAP S/4HANA. It reads from 1 data source (I_Defect_TP) and exposes 13 fields with key field DefectInternalID.

Data Sources (1)

SourceAliasJoin Type
I_Defect_TP I_Defect_TP from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CDEFECTMNGDFT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Defects for Transfer view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey DefectInternalID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #B view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY DefectInternalID DefectInternalID
Defect Defect
DefectText DefectText
DefectCodeGroup DefectCodeGroup
DefectCode DefectCode
InspectionLot InspectionLot
DefectCategory DefectCategory
Plant Plant
MainWorkCenter MainWorkCenter
MainWorkCenterPlant MainWorkCenterPlant
_InspectionLot _InspectionLot
_DefectCodeGroup _DefectCodeGroup
_DefectCode _DefectCode
@AbapCatalog.sqlViewName: 'CDEFECTMNGDFT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true

@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #REQUIRED

@EndUserText.label: 'Defects for Transfer'

@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #CONSUMPTION

@ObjectModel.representativeKey: 'DefectInternalID'
@ObjectModel.usageType: {
    dataClass: #TRANSACTIONAL,
    sizeCategory: #L,
    serviceQuality: #B
}

define view C_DefectMngDefectsForTransfer as select from I_Defect_TP {
    
    //I_Defect_TP

    
    @UI.hidden: true
    key DefectInternalID,
    
    @UI: {
        lineItem: [{ position: '10' }]
    }
    Defect,
    
    DefectText,
    
    @UI: {
        lineItem: [{ position: '20' }]
    }
    DefectCodeGroup,
    
    @UI: {
        lineItem: [{ position: '30' }]
    }
    DefectCode,
    
    @Consumption.hidden: true
    InspectionLot,
    
    @Consumption.hidden: true
    DefectCategory,
    
    @Consumption.hidden: true
    Plant,
    
    @Consumption.hidden: true
    MainWorkCenter,
    
    @Consumption.hidden: true
    MainWorkCenterPlant,
    
    /* Associations */
    @Consumption.hidden: true
    _InspectionLot,
    
    
    
    _DefectCodeGroup,
    _DefectCode

}