C_InhRepairOpenRepairOrderItem
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)
| Source | Alias | Join Type |
|---|---|---|
| I_ServiceDocumentItem | ServiceItem | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_PERFORMREPAIRS | UI_PERFORMREPAIRS | V2 | C1 | NOT_RELEASED |
Fiori Apps (1)
| App ID | App Name | Type | Description |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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 = ''
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA