C_WorkCenterGroupWhereUsed

DDL: C_WORKCENTERGROUPWHEREUSED Type: view_entity CONSUMPTION Package: ODATA_PP_WORKCENTER_GROUP

Work Center Group Where Used

C_WorkCenterGroupWhereUsed is a Consumption CDS View that provides data about "Work Center Group Where Used" in SAP S/4HANA. It reads from 1 data source (I_WorkCenterGroupWhereUsed) and exposes 9 fields with key fields WorkCenterGroupTypeCode, WorkCenterGroupInternalID, ObjectTypeCode, ObjectInternalID, WorkCenterTypeCode. It is exposed through 2 OData services (UI_PROCESSFLOWRESOURCES, UI_WORKCENTERS). It is used in 2 Fiori applications: Manage Work Centers, Manage Resources. Part of development package ODATA_PP_WORKCENTER_GROUP.

Data Sources (1)

SourceAliasJoin Type
I_WorkCenterGroupWhereUsed I_WorkCenterGroupWhereUsed from

Annotations (6)

NameValueLevelField
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Work Center Group Where Used view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view

OData Services (2)

ServiceBindingVersionContractRelease
UI_PROCESSFLOWRESOURCES UI_PROCESSFLOWRESOURCES V2 C1 NOT_RELEASED
UI_WORKCENTERS UI_WORKCENTERS V2 C1 NOT_RELEASED

Fiori Apps (2)

App IDApp NameTypeDescription
F6175 Manage Work Centers Transactional With this app, you can perform all operations related to work centers from one central app. As a Production Engineer in the Discrete Manufacturing Industry, you can navigate to all the relevant apps to view work centers, create new work centers, change work centers, perform mass maintenance of work center capacities and so on.
F6176 Manage Resources Transactional With this app, you can perform all operations related to resources from one central app. As a Production Engineer in the Process Manufacturing Industry, you can navigate to all the relevant apps to view resources, create new resources, change resources, and perform mass maintenance of work center capacities.

Manage Work Centers

Business Role: Others

With this app, you can perform all operations related to work centers from one central app. As a Production Engineer in the Discrete Manufacturing Industry, you can navigate to all the relevant apps to view work centers, create new work centers, change work centers, and perform mass maintenance of work center capacities and so on.

Key Features: You can use this app to do the following: View the list of work centers with details such as Work Center, Plant, Description, Person Responsible,Work Center Category, Usage, Standard Value Key, Control Key and so on. Filter the list of work centers using basic filter conditions such as Work Center, Description, Work Center Category, and so on. Filter the list of work centers using advanced filter conditions. Select a work center in the list to navigate to the Display Work Center app to view the details of the selected work center. Select Create to navigate to the Create Work Center app to create a new work center. Select a work center and choose Change to navigate to the Change Work Centers app and make edits to the selected Work Center. Select a work center and choose Check Usage to navigate to the Usage of Work Centers - In Routings app to understand the usage of the selected work center. Select multiple work centers and choose Mass maintenance of Capacitiesto navigate to Mass Maintenance of Work Center Capacities app to view the list of capacities for the selected work centers. Note Discrete Engineers can view the work centers only for those with application type maintained as P(Routings for Production) and R(Repettive Manufacturing) in Work center category.

Manage Resources

Business Role: Others

With this app, you can perform all operations related to work centers from one central app. As a Production Engineer in the Discrete Manufacturing Industry, you can navigate to all the relevant apps to view work centers, create new work centers, change work centers, and perform mass maintenance of work center capacities and so on.

Key Features: You can use this app to do the following: View the list of work centers with details such as Work Center, Plant, Description, Person Responsible,Work Center Category, Usage, Standard Value Key, Control Key and so on. Filter the list of work centers using basic filter conditions such as Work Center, Description, Work Center Category, and so on. Filter the list of work centers using advanced filter conditions. Select a work center in the list to navigate to the Display Work Center app to view the details of the selected work center. Select Create to navigate to the Create Work Center app to create a new work center. Select a work center and choose Change to navigate to the Change Work Centers app and make edits to the selected Work Center. Select a work center and choose Check Usage to navigate to the Usage of Work Centers - In Routings app to understand the usage of the selected work center. Select multiple work centers and choose Mass maintenance of Capacitiesto navigate to Mass Maintenance of Work Center Capacities app to view the list of capacities for the selected work centers. Note Discrete Engineers can view the work centers only for those with application type maintained as P(Routings for Production) and R(Repettive Manufacturing) in Work center category.

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY WorkCenterGroupTypeCode WorkCenterGroupTypeCode
KEY WorkCenterGroupInternalID WorkCenterGroupInternalID
KEY ObjectTypeCode ObjectTypeCode
KEY ObjectInternalID ObjectInternalID
KEY WorkCenterTypeCode WorkCenterTypeCode
KEY WorkCenterInternalID WorkCenterInternalID
WorkCenterGroup WorkCenterGroup Group
WorkCenterGroupDescription WorkCenterGroupDescription Description
Plant Plant
@VDM.viewType: #CONSUMPTION
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Work Center Group Where Used'
@ObjectModel.usageType: { dataClass: #TRANSACTIONAL, serviceQuality: #C , sizeCategory: #L }
define view entity C_WorkCenterGroupWhereUsed
  as select from I_WorkCenterGroupWhereUsed
{
      @UI.hidden: true
  key WorkCenterGroupTypeCode,

      @UI.hidden: true
  key WorkCenterGroupInternalID,

      @UI.hidden: true
  key ObjectTypeCode,

      @UI.hidden: true
  key ObjectInternalID,

      @UI.hidden: true
  key WorkCenterTypeCode,

      @UI.hidden: true
  key WorkCenterInternalID,

      @UI.lineItem: [ {position: 10 }]
      @EndUserText.label: 'Group'
      WorkCenterGroup,

      @UI.lineItem: [ {position: 20 }]
      @EndUserText.label: 'Description'
      WorkCenterGroupDescription,

      @UI.hidden: true
      Plant
}