I_DefectLocationCatalog

DDL: I_DEFECTLOCATIONCATALOG SQL: IDEFLOCCAT Type: view COMPOSITE

Defect Location Catalog

I_DefectLocationCatalog is a Composite CDS View that provides data about "Defect Location Catalog" in SAP S/4HANA. It reads from 1 data source (I_Inspectioncatalog) and exposes 2 fields with key field DefectLocationCatalog.

Data Sources (1)

SourceAliasJoin Type
I_Inspectioncatalog I_Inspectioncatalog from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IDEFLOCCAT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey DefectLocationCatalog view
EndUserText.label Defect Location Catalog view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY DefectLocationCatalog
_Text _Text
@AbapCatalog.sqlViewName: 'IDEFLOCCAT'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #COMPOSITE

@ObjectModel:{
    usageType:{
        dataClass: #CUSTOMIZING,
        serviceQuality: #A,
        sizeCategory: #S
    },
    representativeKey: 'DefectLocationCatalog'
}
@EndUserText.label: 'Defect Location Catalog'

define view I_DefectLocationCatalog as select from I_Inspectioncatalog

    association[0..*] to I_DefectLocationCatalogText as _Text on $projection.DefectLocationCatalog = _Text.DefectLocationCatalog

{
   @ObjectModel.text.association: '_Text'
   key cast( InspectionCatalog as vdm_qfeocat preserving type ) as DefectLocationCatalog,
  
   /* Associations */
   _Text

    
} where //InspectionCatalog = 'B' or //Object Parts

        InspectionCatalog = 'E'    //Defect Locations              

 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_INSPECTIONCATALOG"
],
"ASSOCIATED":
[
"I_DEFECTLOCATIONCATALOGTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/