C_WorkPermitApprovalValueHelp

DDL: C_WORKPERMITAPPROVALVALUEHELP SQL: CWRKPMTAPPRVLVH Type: view CONSUMPTION

Approvals for permit type

C_WorkPermitApprovalValueHelp is a Consumption CDS View that provides data about "Approvals for permit type" in SAP S/4HANA. It reads from 1 data source (I_WorkPermitApprovalBasic) and exposes 9 fields with key fields MaintenancePlanningPlant, WorkPermitType, WorkPermitApproval, WorkPermitApprovalScenario. It is exposed through 2 OData services (UI_WORKPERMIT, UI_WORKPERMITTEMPLATE). It is used in 3 Fiori applications: Create Work Permit Request, Manage Work Permit Templates, Manage Work Permits.

Data Sources (1)

SourceAliasJoin Type
I_WorkPermitApprovalBasic Approval from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CWRKPMTAPPRVLVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Approvals for permit type view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey MaintenancePlanningPlant view

OData Services (2)

ServiceBindingVersionContractRelease
UI_WORKPERMIT UI_WORKPERMIT V2 C1 NOT_RELEASED
UI_WORKPERMITTEMPLATE UI_WORKPERMITTEMPLATE V2 C1 NOT_RELEASED

Fiori Apps (3)

App IDApp NameTypeDescription
F4691 Create Work Permit Request Transactional Work Permit is initiated during the planning of a maintenance activity and typically created from a predesigned template, together with the work order associated with the maintenance task. You can use this app to create new Work Permit.
F4692 Manage Work Permit Templates Transactional Work permit template provides a predesigned structure that can be used to create work permits of consistent format. This can help you streamline the process when Permits for similar work are required to be created periodically. You can use this app to maintain the re-use library of templates to use them for creating actual work permits.
F6579 Manage Work Permits Transactional Work Permit is initiated during the planning of a maintenance activity and typically created from a predesigned template, together with the work order associated with the maintenance task. You can use this to search and maintain Work Permits.

Create Work Permit Request

Business Role: Maintenance Planner

The Create Work Permit Request app allows to create new work permit with reference to an existing maintenance order, a predesigned work permit template, or independently. It provides the abilities to perform the following operations:Allows to create and process new work permit using the optimized work permit management solutionProvides the ability to assign multiple functional locations, equipment, maintenance orders, partners, and attachments to enhance work permit with details related to the work activityAllows the configuration of the nature of work, personal protective equipment, and safety precautions to enhance work permit with safety protocols.Offers easy data validation and a simplified approval process that adheres to a four-eyes principleSupports the printing of work permit in the output form maintained by the userProvides the ability to extend the validity even after the creation of work permitSupports all operations relevant to work permit management such as approval, print, issue, return, close, deactivate, cancel, and mark for deletion.Provides the ability to view the records of data transfers using application logs

Manage Work Permit Templates

Business Role: Industrial Hygienist

The Manage Work Permit Templates app allows to create work permit templates as predesigned models for creating work permits. The templates can be used as they are, or easily modified while work permits are created. Usage of work permit templates can help to streamline the work permit creation process when identical work permits are generated often. The app can perform the following operations:Allows to create, process, and manage work permit templatesProvides the ability to assign multiple functional locations, equipment, partners, and attachmentsAllows the configuration of the nature of work, personal protective equipment, and safety precautionsOffers easy data validation and a simplified approval process that adheres to a four-eyes principleProvides the ability to view the records of data transfers using application logs

Manage Work Permits

Business Role: Maintenance Planner

The Manage Work Permits app allows you to create, manage, and monitor work permits and gain valuable insights about the progress of your maintenance operations. Using the app, new work permits can be created with reference to an existing maintenance order, a predesigned work permit template, or independently. It provides the following capabilities:Allows to create and process new work permit using the optimized work permit management solutionProvides the ability to assign multiple functional locations, equipment, maintenance orders, partners, and attachments to enhance work permit with details related to the work activityAllows the configuration of the nature of work, personal protective equipment, and safety precautions to enhance work permit with safety protocols.Offers easy data validation and a simplified approval process that adheres to a four-eyes principleSupports the printing of work permit in the output form maintained by the userProvides the ability to extend the validity even after the creation of work permitSupports all operations relevant to work permit management such as approval, print, issue, return, close, deactivate, cancel, and mark for deletion.Provides the ability to view the records of data transfers using application logs

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY MaintenancePlanningPlant MaintenancePlanningPlant
KEY WorkPermitType WorkPermitType
KEY WorkPermitApproval WorkPermitApproval
KEY WorkPermitApprovalScenario WorkPermitApprovalScenario
WrkPmtApprovalHierarchyLevel WrkPmtApprovalHierarchyLevel
WrkPmtApprovalCopyIsAutomatic WrkPmtApprovalCopyIsAutomatic
WrkPmtApprovalIsMandatory WrkPmtApprovalIsMandatory
WorkPermitApprovalDescription WorkPermitApprovalDescription
WrkPmtApprvlMandText WrkPmtApprvlMandText
@AbapCatalog.sqlViewName: 'CWRKPMTAPPRVLVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Approvals for permit type'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #META}
@VDM.viewType: #CONSUMPTION
@ObjectModel.dataCategory:#VALUE_HELP
@ObjectModel.representativeKey: 'MaintenancePlanningPlant'
define view C_WorkPermitApprovalValueHelp
  as select from I_WorkPermitApprovalBasic as Approval
{
  key MaintenancePlanningPlant,
  key WorkPermitType,
  key WorkPermitApproval,
  key WorkPermitApprovalScenario,
      WrkPmtApprovalHierarchyLevel,
      WrkPmtApprovalCopyIsAutomatic,
      WrkPmtApprovalIsMandatory,
      WorkPermitApprovalDescription,
      WrkPmtApprvlMandText
}