C_PermitToWorkProfile

DDL: C_PERMITTOWORKPROFILE Type: view_entity CONSUMPTION

Planning Plant Settings for PTW profile

C_PermitToWorkProfile is a Consumption CDS View that provides data about "Planning Plant Settings for PTW profile" in SAP S/4HANA. It reads from 1 data source (I_PermitToWorkProfile) and exposes 9 fields with key field MaintenancePlanningPlant. It is exposed through 2 OData services (UI_SAFETYCERTIFICATE, UI_SAFETYCERTIFICATETEMPLATE). It is used in 1 Fiori application: Manage Safety Certificates.

Data Sources (1)

SourceAliasJoin Type
I_PermitToWorkProfile I_PermitToWorkProfile from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Planning Plant Settings for PTW profile view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #CONSUMPTION view
Search.searchable true view

OData Services (2)

ServiceBindingVersionContractRelease
UI_SAFETYCERTIFICATE UI_SAFETYCERTIFICATE V2 C1 NOT_RELEASED
UI_SAFETYCERTIFICATETEMPLATE UI_SFTYCERTIFICATETEMPLATE V2 C1 NOT_RELEASED

Fiori Apps (1)

App IDApp NameTypeDescription
F6678 Manage Safety Certificates Transactional Safety Certificate defines the safety precautions specific to a process / team for example Ionization Radiation, Vehicle Entry, Diving etc and documents approvals required and performed for the specific environment.

Manage Safety Certificates

Business Role: Maintenance Planner

With this app, you can create new safety certificates or manage the existing certificates that are active, non-active, or closed in the system. New safety certificates can be created with reference to an existing work permit, a pre-designed safety certificate template, or independently. Once the safety certificate has been created, you can enhance the record with additional details.

Key Features: Enables maintenance planners to create and manage safety certificates Supports the creation of certificates with reference to a work permit and/or a safety certificate template and independently Allows the configuration of the safety precautions as an integral component of the safety certificate solution Provides the ability to assign work permits, partners, and multiple functional locations or equipment to the safety certificate Offers easy data validation and a simplified approval process that adheres to a four-eyes principle In addition, the app supports the following technical features and options: Attachment Service Application Logs

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY MaintenancePlanningPlant MaintenancePlanningPlant
WrkPmtOrdOpAssgmtIsAllowed WrkPmtOrdOpAssgmtIsAllowed
MaxNumberOfOrdersToPermit MaxNumberOfOrdersToPermit
MaxNumberOfPermitsToOrder MaxNumberOfPermitsToOrder
PartnerDeterminationProcedure PartnerDeterminationProcedure
WrkPmtIssueHistoryIsAllowed WrkPmtIssueHistoryIsAllowed
WrkPmtSftyCertAssgmtCtrlCode WrkPmtSftyCertAssgmtCtrlCode
PlantName PlantName
_Plant _Plant
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Planning Plant Settings for PTW profile'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #X,
  sizeCategory: #S,
  dataClass: #MIXED
}
@VDM.viewType: #CONSUMPTION
@Search.searchable: true
define view entity C_PermitToWorkProfile
  as select from I_PermitToWorkProfile
{
      @ObjectModel.text.element: ['PlantName']
      @ObjectModel.text.association: '_Plant'
      @Consumption.filter.hidden: true
      @Search: {defaultSearchElement: true, ranking: #HIGH}
  key MaintenancePlanningPlant,
      @UI.hidden: true
      WrkPmtOrdOpAssgmtIsAllowed,
      @UI.hidden: true
      MaxNumberOfOrdersToPermit,
      @UI.hidden: true
      MaxNumberOfPermitsToOrder,
      @UI.hidden: true
      PartnerDeterminationProcedure,
      @UI.hidden: true
      WrkPmtIssueHistoryIsAllowed,
      @UI.hidden: true
      WrkPmtSftyCertAssgmtCtrlCode,
      @Semantics.text: true
      @Consumption.filter.hidden: true
      @Search: {defaultSearchElement: true, ranking: #HIGH}
      PlantName,
      _Plant
}