C_InspWorkCenterRsltRec

DDL: C_INSPWORKCENTERRSLTREC SQL: CINSPWCRRVH Type: view CONSUMPTION

Inspection Operation

C_InspWorkCenterRsltRec is a Consumption CDS View that provides data about "Inspection Operation" in SAP S/4HANA. It reads from 1 data source (I_InspectionOperation) and exposes 15 fields with key fields InspectionLot, InspPlanOperationInternalID.

Data Sources (1)

SourceAliasJoin Type
I_InspectionOperation I_InspectionOperation from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName CINSPWCRRVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Inspection Operation view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY InspectionLot InspectionLot
KEY InspPlanOperationInternalID InspPlanOperationInternalID
InspectionOperation InspectionOperation Inspection Operation
OperationText OperationText Inspection Operation Text
InspSbstIsTimeRelated InspSbstIsTimeRelated
InspSbstHasNoTimeOrQuantity InspSbstHasNoTimeOrQuantity
WorkCenterInternalID WorkCenterInternalID
WorkCenterTypeCode _WorkCenter WorkCenterTypeCode
WorkCenter _WorkCenter WorkCenter
WorkCenterText
WorkCenterCategoryCode _WorkCenter WorkCenterCategoryCode
WorkCenterUsage _WorkCenter WorkCenterUsage
Plant _WorkCenter Plant
ValidityStartDate _WorkCenter ValidityStartDate
ValidityEndDate _WorkCenter ValidityEndDate
@AbapCatalog.sqlViewName: 'CINSPWCRRVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Inspection Operation'
@VDM.viewType: #CONSUMPTION
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ClientHandling.algorithm: #SESSION_VARIABLE

define view C_InspWorkCenterRsltRec as select from I_InspectionOperation                                                       

{       @Consumption.filter.hidden: true
   key  InspectionLot,
        @Consumption.filter.hidden: true
   key  InspPlanOperationInternalID,
        @EndUserText.label: 'Inspection Operation'
        @Consumption.valueHelpDefinition: [ { entity: { name: 'I_InspectionOperationStdVH', element: 'InspectionOperation' } } ]
        InspectionOperation,
        @Consumption.filter.hidden: true
        @EndUserText.label: 'Inspection Operation Text'
        OperationText,
        @Consumption.filter.hidden: true
        InspSbstIsTimeRelated,
        @Consumption.filter.hidden: true
        InspSbstHasNoTimeOrQuantity,
        @Consumption.filter.hidden: true
        WorkCenterInternalID,
        @Consumption.filter.hidden: true
        _WorkCenter.WorkCenterTypeCode, 
        _WorkCenter.WorkCenter,
        @Consumption.filter.hidden: true
        _WorkCenter._Text[1:Language=$session.system_language].WorkCenterText,
        @Consumption.filter.hidden: true
        _WorkCenter.WorkCenterCategoryCode,
        @Consumption.filter.hidden: true
        _WorkCenter.WorkCenterUsage,
        @Consumption.filter.hidden: true
        _WorkCenter.Plant,
        @Consumption.filter.hidden: true
        _WorkCenter.ValidityStartDate,
        @Consumption.filter.hidden: true
        _WorkCenter.ValidityEndDate      
      
}
where
InspSbstIsTimeRelated                                  =  'X'
or
InspSbstHasNoTimeOrQuantity                            =  'X'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_INSPECTIONOPERATION",
"I_WORKCENTER",
"I_WORKCENTERTEXT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/