@AbapCatalog.sqlViewName : 'CRSHMGROFRES'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label : 'Manager'
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.sizeCategory: #XL
@VDM.viewType: #CONSUMPTION
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.personalData.blocking: #REQUIRED
/*
CONTRACT**********************************************************************************************************************
Name: Manager of Resources
Specification: This View returns the names of the resource managers
Ensures: Resource manager names are returned
Owners: TR
Contributors: -
Unit Test required Y/N: No
Additional comments None
END OF CONTRACT***************************************************************************************************************
*/
define view C_RSHManagerOfResource
as select from I_PersWrkAgrmtManagerForKeyDte( P_KeyDate: $session.system_date ) as Manager
{
@UI.hidden: true
key PersonWorkAgreement,
@Consumption.hidden: true
ManagerPersonWorkAgreement,
@UI.hidden: true
_ManagerPersonWorkAgreement_1._WorkforcePerson.PersonExternalID,
@Consumption.hidden: true
_ManagerPersonWorkAgreement_1._WorkforcePerson.FirstName,
@Consumption.hidden: true
_ManagerPersonWorkAgreement_1._WorkforcePerson.LastName,
@Consumption.hidden: true
_ManagerPersonWorkAgreement_1._WorkforcePerson.MiddleName,
@Consumption.hidden: true
_ManagerPersonWorkAgreement_1._WorkforcePerson.AdditionalLastName,
@EndUserText: {label: 'Manager'}
_ManagerPersonWorkAgreement_1._WorkforcePerson.PersonFullName,
@Consumption.hidden: true
_ManagerPersonWorkAgreement_1.AuthorizationGroup,
@Consumption.hidden: true
_ManagerPersonWorkAgreement_1._WorkforcePerson.IsBusinessPurposeCompleted
}
/*+[internal] {
"BASEINFO":
{
"FROM ":
[
"I_PERSONWORKAGREEMENT_1",
"I_PERSWRKAGRMTMANAGERFORKEYDTE",
"I_WORKFORCEPERSON"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Depth:
1
2
3
4
5
All
Reload
C_RSHManagerOfResource view