I_EmployeeSuitability

DDL: I_EMPLOYEESUITABILITY SQL: IPPEMPLSUITABL Type: view BASIC

Employee Suitability

I_EmployeeSuitability is a Basic CDS View (Dimension) that provides data about "Employee Suitability" in SAP S/4HANA. It reads from 1 data source (t423) and exposes 4 fields with key fields Plant, EmployeeSuitability. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
t423 t423 from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_Plant _Plant $projection.Plant = _Plant.Plant
[0..*] I_EmployeeSuitabilityText _Text $projection.EmployeeSuitability = _Text.EmployeeSuitability and $projection.Plant = _Text.Plant

Annotations (21)

NameValueLevelField
AbapCatalog.sqlViewName IPPEMPLSUITABL view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 001 view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey EmployeeSuitability view
ObjectModel.semanticKey EmployeeSuitability view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label Employee Suitability view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Plant werks
KEY EmployeeSuitability qualf
_Plant _Plant
_Text _Text
@AbapCatalog.sqlViewName: 'IPPEMPLSUITABL'
@AbapCatalog.buffering: {status: #ACTIVE, type: #GENERIC, numberOfKeyFields: 001}
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true 
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@Analytics.internalName: #LOCAL
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #SEARCHABLE_ENTITY]
@ObjectModel.representativeKey: 'EmployeeSuitability'
@ObjectModel.semanticKey: 'EmployeeSuitability'
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #ORGANIZATIONAL}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Employee Suitability'

define view I_EmployeeSuitability
  as select from t423
  association [1..1] to I_Plant                   as _Plant on  $projection.Plant = _Plant.Plant
  association [0..*] to I_EmployeeSuitabilityText as _Text  on  $projection.EmployeeSuitability = _Text.EmployeeSuitability
                                                            and $projection.Plant               = _Text.Plant
{
      // Key

      @ObjectModel.foreignKey.association: '_Plant'
      @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
  key werks as Plant,
      @ObjectModel.text.association: '_Text'
      @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
  key qualf as EmployeeSuitability,

      // Associations

      _Plant,
      _Text
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T423"
],
"ASSOCIATED":
[
"I_EMPLOYEESUITABILITYTEXT",
"I_PLANT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/