C_PermitToWorkPartnerValueHelp

DDL: C_PERMITTOWORKPARTNERVALUEHELP Type: view_entity CONSUMPTION Package: VDM_EAM_WCM_PERMIT_TO_WORK

PTW Profile specific BusinessPartnerData

C_PermitToWorkPartnerValueHelp is a Consumption CDS View that provides data about "PTW Profile specific BusinessPartnerData" in SAP S/4HANA. It reads from 3 data sources (I_Customer, I_PartFuncByPartDetnProced, I_PermitToWorkProfile) and exposes 15 fields with key fields PartnerDeterminationProcedure, PartnerFunction, MaintenancePlanningPlant, Partner. It has 1 association to related views. It is exposed through 2 OData services (UI_WORKPERMIT, UI_WORKPERMITTEMPLATE). It is used in 2 Fiori applications: Manage Work Permit Templates, Manage Work Permits. Part of development package VDM_EAM_WCM_PERMIT_TO_WORK.

Data Sources (3)

SourceAliasJoin Type
I_Customer _Customer inner
I_PartFuncByPartDetnProced _PartnerDetProced from
I_PermitToWorkProfile _PermitProfileDetails inner

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_PartnerFunction _PartnerFunc _PartnerFunc.PartnerFunction = $projection.PartnerFunction

Annotations (10)

NameValueLevelField
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label PTW Profile specific BusinessPartnerData view
ObjectModel.dataCategory #VALUE_HELP view
Analytics.technicalName CPERMITPARTNERVH 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 (2)

App IDApp NameTypeDescription
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.

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

KeyFieldSource TableSource FieldDescription
KEY PartnerDeterminationProcedure I_PartFuncByPartDetnProced PartnerDeterminationProcedure
KEY PartnerFunction I_PartFuncByPartDetnProced PartnerFunction
KEY MaintenancePlanningPlant I_PermitToWorkProfile MaintenancePlanningPlant
KEY Partner I_Customer Customer
PartnerFullName I_Customer CustomerFullName
PartnerFunctionName
Country I_Customer Country
CityName I_Customer CityName
PostalCode I_Customer PostalCode
StreetName I_Customer StreetName
IsBusinessPurposeCompleted I_Customer IsBusinessPurposeCompleted
CustomerAccountGroup I_Customer CustomerAccountGroup
AuthorizationGroup I_Customer AuthorizationGroup
DataControllerSet I_Customer DataControllerSet
_PartnerFunc _PartnerFunc
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ObjectModel.usageType: {serviceQuality: #D, sizeCategory: #S, dataClass: #META}
@VDM.viewType: #CONSUMPTION
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'PTW Profile specific BusinessPartnerData'
@ObjectModel.dataCategory:#VALUE_HELP
@Analytics.technicalName: 'CPERMITPARTNERVH'
@ObjectModel.representativeKey: 'MaintenancePlanningPlant'
define view entity C_PermitToWorkPartnerValueHelp
  as select from           I_PartFuncByPartDetnProced as _PartnerDetProced
    inner join             I_PermitToWorkProfile      as _PermitProfileDetails on _PartnerDetProced.PartnerDeterminationProcedure = _PermitProfileDetails.PartnerDeterminationProcedure
    left outer to one join I_BusinessPartnerPartFunc  as _PartnerFunction      on _PartnerDetProced.PartnerFunction = _PartnerFunction.PartnerFunction
    inner join             I_Customer                 as _Customer             on _PartnerFunction.Customer = _Customer.Customer
  association [1..1] to I_PartnerFunction as _PartnerFunc on _PartnerFunc.PartnerFunction = $projection.PartnerFunction
{
      @UI.hidden:true
  key _PartnerDetProced.PartnerDeterminationProcedure,
  key _PartnerDetProced.PartnerFunction,
      @UI.hidden:true
  key _PermitProfileDetails.MaintenancePlanningPlant,
  key _Customer.Customer        as Partner,
      _Customer.CustomerFullName as PartnerFullName,
      _PartnerFunc._Text[ 1: Language = $session.system_language ].PartnerFunctionName,
      _Customer.Country,
      _Customer.CityName,
      _Customer.PostalCode,
      _Customer.StreetName,
      @UI.hidden:true
      @Semantics.booleanIndicator:true
      _Customer.IsBusinessPurposeCompleted,
      @UI.hidden:true
      _Customer.CustomerAccountGroup,
      @UI.hidden:true
      _Customer.AuthorizationGroup,
      @Consumption.hidden:true
      @UI.hidden:true
      _Customer.DataControllerSet,
      _PartnerFunc
}
where
  _PartnerDetProced.PartnerDeterminationProcedure != ''
  and _Customer.Customer not like '$%'