I_WorkPermitType

DDL: I_WORKPERMITTYPE SQL: IWRKPMTTYPE Type: view BASIC

Work Permit Type

I_WorkPermitType is a Basic CDS View that provides data about "Work Permit Type" in SAP S/4HANA. It reads from 1 data source (ptwpermittype) and exposes 7 fields with key fields MaintenancePlanningPlant, WorkPermitType. It has 2 associations to related views. It is exposed through 1 OData service (UI_WORKPERMIT). It is used in 2 Fiori applications: Create Work Permit Request, Manage Work Permits.

Data Sources (1)

SourceAliasJoin Type
ptwpermittype ptwpermittype from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_WorkPermitTypeText _WorkPermitTypeText $projection.WorkPermitType = _WorkPermitTypeText.WorkPermitType and $projection.MaintenancePlanningPlant = _WorkPermitTypeText.MaintenancePlanningPlant and _WorkPermitTypeText.Language = $session.system_language
[1..1] I_PermitToWorkProfile _PermitToWorkProfile $projection.MaintenancePlanningPlant = _PermitToWorkProfile.MaintenancePlanningPlant

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IWRKPMTTYPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #MANDATORY view
Search.searchable true view
EndUserText.label Work Permit Type view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey WorkPermitType view

OData Services (1)

ServiceBindingVersionContractRelease
UI_WORKPERMIT UI_WORKPERMIT V2 C1 NOT_RELEASED

Fiori Apps (2)

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.
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 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 (7)

KeyFieldSource TableSource FieldDescription
KEY MaintenancePlanningPlant iwerk
KEY WorkPermitType workpermittype
WorkPermitTypeDescription _WorkPermitTypeText WorkPermitTypeDescription
_WorkPermitTypeText _WorkPermitTypeText
_PermitToWorkProfile _PermitToWorkProfile
InternalNumberRangeInterval int_range
ExternalNumberRangeInterval ext_range
@AbapCatalog.sqlViewName: 'IWRKPMTTYPE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #MANDATORY
@Search.searchable: true
@EndUserText.label: 'Work Permit Type'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #MIXED
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'WorkPermitType'
define view I_WorkPermitType
  as select from ptwpermittype
  association [1..1] to I_WorkPermitTypeText  as _WorkPermitTypeText  on  $projection.WorkPermitType           = _WorkPermitTypeText.WorkPermitType
                                                                      and $projection.MaintenancePlanningPlant = _WorkPermitTypeText.MaintenancePlanningPlant
                                                                      and _WorkPermitTypeText.Language         = $session.system_language
  association [1..1] to I_PermitToWorkProfile as _PermitToWorkProfile on  $projection.MaintenancePlanningPlant = _PermitToWorkProfile.MaintenancePlanningPlant
{

      @Search: {defaultSearchElement: true, ranking: #HIGH}
      @Consumption.filter.hidden: true
    key  iwerk          as MaintenancePlanningPlant,
      @Search: {defaultSearchElement: true, ranking: #HIGH}
      @Semantics.text
      @ObjectModel.text.element: ['WorkPermitTypeDescription']
      @Consumption.filter.hidden: true
      @EndUserText: { label: 'Work Permit Type', quickInfo: 'Work Permit Type' }
    key workpermittype as WorkPermitType,
      @Consumption.filter.hidden: true
      @EndUserText: { label: 'Work Permit Type Description', quickInfo: 'Work Permit Type Description' }
      _WorkPermitTypeText.WorkPermitTypeDescription,
      @Consumption.filter.hidden: true
      _WorkPermitTypeText,
      _PermitToWorkProfile,
      @UI.hidden: true
      int_range      as InternalNumberRangeInterval,
      @UI.hidden: true
      ext_range      as ExternalNumberRangeInterval
}
where
  wrkpmtusagetype = 'P' ;