C_InhRepairOpenRepairOrderItem

DDL: C_INHREPAIROPENREPAIRORDERITEM Type: view_entity CONSUMPTION Package: CRMS4_REPAIR_ODATA

Open Repair Order Items

C_InhRepairOpenRepairOrderItem is a Consumption CDS View that provides data about "Open Repair Order Items" in SAP S/4HANA. It reads from 1 data source (I_ServiceDocumentItem) and exposes 17 fields with key fields ServiceObjectType, ServiceDocument, ServiceDocumentItem. It is exposed through 1 OData service (UI_PERFORMREPAIRS). It is used in 1 Fiori application: Perform Repairs. Part of development package CRMS4_REPAIR_ODATA.

Data Sources (1)

SourceAliasJoin Type
I_ServiceDocumentItem ServiceItem from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Open Repair Order Items view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #CONSUMPTION view
Metadata.ignorePropagatedAnnotations true view

OData Services (1)

ServiceBindingVersionContractRelease
UI_PERFORMREPAIRS UI_PERFORMREPAIRS V2 C1 NOT_RELEASED

Fiori Apps (1)

App IDApp NameTypeDescription
F4241 Perform Repairs Transactional You can use this app to access the repair order that contains the details about the repair. You confirm the required service products, service parts, and expenses in this order.

Perform Repairs

Business Role: Service Technician - In-House Repair

You can use this app to access the repair order that contains the details about the diagnosis and the repair. You confirm the required service items, service parts, and expense items in the repair order.

Key Features: Call up a worklist of all repair objects that are currently in diagnosis and in repair (statuses Perform: Diagnosis or Perform: Repair). You can filter, sort, and group a list of repair objects that are currently in diagnosis and in repair. Display the details of the repair objects that are currently in diagnosis or repair. You can access the related product and equipment data to check their details. Access the repair order to see the details of the diagnosis or the repair. Access the repair order to confirm the required service items, service parts, and expense items.

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY ServiceObjectType I_ServiceDocumentItem ServiceObjectType
KEY ServiceDocument I_ServiceDocumentItem ServiceDocument
KEY ServiceDocumentItem I_ServiceDocumentItem ServiceDocumentItem
ReferenceInHouseRepair I_ServiceDocumentItem ReferenceInHouseRepair
ReferenceInHouseRepairItem I_ServiceDocumentItem ReferenceInHouseRepairItem
ServiceEmployee I_ServiceDocumentItem ServiceEmployee
ResponsibleEmployee
Division I_ServiceDocumentItem Division
ServiceDocumentType I_ServiceDocumentItem ServiceDocumentType
SalesOrganization I_ServiceDocumentItem SalesOrganization
DistributionChannel I_ServiceDocumentItem DistributionChannel
SalesOffice I_ServiceDocumentItem SalesOffice
SalesGroup I_ServiceDocumentItem SalesGroup
SalesOrganizationOrgUnitID I_ServiceDocumentItem SalesOrganizationOrgUnitID
SalesOfficeOrgUnitID I_ServiceDocumentItem SalesOfficeOrgUnitID
SalesGroupOrgUnitID I_ServiceDocumentItem SalesGroupOrgUnitID
ServiceOrganization I_ServiceDocumentItem ServiceOrganization
@AccessControl: {
    authorizationCheck: #MANDATORY, 
    personalData.blocking: #('TRANSACTIONAL_DATA')
}
@EndUserText.label: 'Open Repair Order Items'
@ObjectModel.usageType: {serviceQuality: #C, sizeCategory: #L, dataClass: #TRANSACTIONAL}
@VDM.viewType: #CONSUMPTION
@Metadata.ignorePropagatedAnnotations: true

define view entity C_InhRepairOpenRepairOrderItem as select from I_ServiceDocumentItem as ServiceItem {
  key ServiceItem.ServiceObjectType,
  key ServiceItem.ServiceDocument,
  key ServiceItem.ServiceDocumentItem,
  ServiceItem.ReferenceInHouseRepair,
  ServiceItem.ReferenceInHouseRepairItem,
  ServiceItem.ServiceEmployee,
  
  @Consumption.hidden: true
  cast(ServiceItem.ResponsibleEmployee as resp_empl ) as ResponsibleEmployee,
  
  @Consumption.hidden: true
  ServiceItem.Division,
  
  @Consumption.hidden: true
  ServiceItem.ServiceDocumentType,
  
  @Consumption.hidden: true
  ServiceItem.SalesOrganization,
  
  @Consumption.hidden: true
  ServiceItem.DistributionChannel,
  
  @Consumption.hidden: true
  ServiceItem.SalesOffice,
  
  @Consumption.hidden: true
  ServiceItem.SalesGroup,
  
  @Consumption.hidden: true
  ServiceItem.SalesOrganizationOrgUnitID,
  
  @Consumption.hidden: true
  ServiceItem.SalesOfficeOrgUnitID,
  
  @Consumption.hidden: true
  ServiceItem.SalesGroupOrgUnitID,
  
  @Consumption.hidden: true
  ServiceItem.ServiceOrganization
}
where ServiceItem.ServiceDocumentItemObjectType = 'BUS2000140' // Service Product Item

and ServiceItem.ServiceDocumentItemIsOpen = 'X' //open, in process or released

and ServiceItem.ServiceDocumentItemIsQuotation = ''