I_WorkPermitType
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 1 Fiori application: Manage Work Permits. Part of development package VDM_EAM_WCM_PERMIT_TO_WORK.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ptwpermittype | ptwpermittype | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [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 (9)
| Name | Value | Level | Field |
|---|---|---|---|
| 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 | |
| ObjectModel.representativeKey | WorkPermitType | view | |
| Analytics.technicalName | IWRKPMTTYPE | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_WORKPERMIT | UI_WORKPERMIT | V2 | C1 | NOT_RELEASED |
Fiori Apps (1)
| App ID | App Name | Type | Description |
|---|---|---|---|
| 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. |
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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MaintenancePlanningPlant | iwerk | ||
| KEY | WorkPermitType | workpermittype | ||
| WorkPermitTypeDescription | _WorkPermitTypeText | WorkPermitTypeDescription | ||
| _WorkPermitTypeText | _WorkPermitTypeText | |||
| _PermitToWorkProfile | _PermitToWorkProfile | |||
| InternalNumberRangeInterval | int_range | |||
| ExternalNumberRangeInterval | ext_range |
@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
@ObjectModel.representativeKey: 'WorkPermitType'
@Analytics.technicalName: 'IWRKPMTTYPE'
define view entity 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' ;
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