I_EmployeeSuitabilityText

DDL: I_EMPLOYEESUITABILITYTEXT SQL: IPPEMPLSUITTEXT Type: view BASIC

Employee Suitability - Text

I_EmployeeSuitabilityText is a Basic CDS View that provides data about "Employee Suitability - Text" in SAP S/4HANA. It reads from 1 data source (t423t) and exposes 7 fields with key fields Language, Plant, EmployeeSuitability. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
t423t txt from

Associations (3)

CardinalityTargetAliasCondition
[1..1] I_EmployeeSuitability _EmployeeSuitability $projection.Plant = _EmployeeSuitability.Plant and $projection.EmployeeSuitability = _EmployeeSuitability.EmployeeSuitability
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_Plant _Plant $projection.Plant = _Plant.Plant

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName IPPEMPLSUITTEXT 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.dataExtraction.enabled true view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.representativeKey EmployeeSuitability view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label Employee Suitability - Text view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Language t423t spras
KEY Plant t423t werks
KEY EmployeeSuitability t423t qualf
EmployeeSuitabilityName t423t txt
_Plant _Plant
_EmployeeSuitability _EmployeeSuitability
_Language _Language
@AbapCatalog.sqlViewName: 'IPPEMPLSUITTEXT'
@AbapCatalog.buffering: {status: #ACTIVE, type: #GENERIC, numberOfKeyFields: 001}
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true 
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataExtraction.enabled: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities:  [#LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #EXTRACTION_DATA_SOURCE]
@ObjectModel.representativeKey: 'EmployeeSuitability'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #ORGANIZATIONAL}
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Employee Suitability - Text'

define view I_EmployeeSuitabilityText
  as select from t423t as txt
  association [1..1] to I_EmployeeSuitability as _EmployeeSuitability on  $projection.Plant = _EmployeeSuitability.Plant 
                                                                      and $projection.EmployeeSuitability = _EmployeeSuitability.EmployeeSuitability
  association [0..1] to I_Language            as _Language            on  $projection.Language = _Language.Language
  association [1..1] to I_Plant               as _Plant               on  $projection.Plant = _Plant.Plant
{
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key txt.spras as Language,
      @ObjectModel.foreignKey.association: '_Plant'
  key txt.werks as Plant,
      @ObjectModel.foreignKey.association: '_EmployeeSuitability'
      @ObjectModel.text.element: 'EmployeeSuitabilityName'
  key txt.qualf as EmployeeSuitability,
      @Semantics.text: true
      txt.txt   as EmployeeSuitabilityName,

      _Plant,
      _EmployeeSuitability,
      _Language
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T423T"
],
"ASSOCIATED":
[
"I_EMPLOYEESUITABILITY",
"I_LANGUAGE",
"I_PLANT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/