C_WrkPmtPartnerFunctionVH

DDL: C_WRKPMTPARTNERFUNCTIONVH SQL: CPARTNERFUNCVH Type: view CONSUMPTION

Work Permit Partner Function

C_WrkPmtPartnerFunctionVH is a Consumption CDS View that provides data about "Work Permit Partner Function" in SAP S/4HANA. It reads from 2 data sources (I_PartFuncByPartDetnProced, I_PermitToWorkProfile) and exposes 4 fields with key fields PartnerDeterminationProcedure, PartnerFunction, MaintenancePlanningPlant. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
I_PartFuncByPartDetnProced _PartnerDetProced from
I_PermitToWorkProfile _PermitProfileDetails inner

Associations (1)

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

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CPARTNERFUNCVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
ObjectModel.dataCategory #VALUE_HELP view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Work Permit Partner Function view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey MaintenancePlanningPlant view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY PartnerDeterminationProcedure I_PartFuncByPartDetnProced PartnerDeterminationProcedure
KEY PartnerFunction I_PartFuncByPartDetnProced PartnerFunction
KEY MaintenancePlanningPlant I_PermitToWorkProfile MaintenancePlanningPlant
PartnerFunctionName
@AbapCatalog.sqlViewName: 'CPARTNERFUNCVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {serviceQuality: #D, sizeCategory: #S, dataClass: #META}
@ObjectModel.dataCategory: #VALUE_HELP
@VDM.viewType: #CONSUMPTION
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Work Permit Partner Function'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.representativeKey: 'MaintenancePlanningPlant'
define view C_WrkPmtPartnerFunctionVH
  as select from I_PartFuncByPartDetnProced as _PartnerDetProced
    inner join   I_PermitToWorkProfile     as _PermitProfileDetails on _PartnerDetProced.PartnerDeterminationProcedure = _PermitProfileDetails.PartnerDeterminationProcedure
    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,
      _PartnerFunc._Text[ 1: Language = $session.system_language ].PartnerFunctionName
 }
 
 where
  _PartnerDetProced.PartnerDeterminationProcedure != ''

/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PARTFUNCBYPARTDETNPROCED",
"I_PARTNERFUNCTION",
"I_PARTNERFUNCTIONTEXT",
"I_PERMITTOWORKPROFILE"
],
"ASSOCIATED":
[
"I_PARTNERFUNCTION"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/