I_InspectorQualificationText

DDL: I_INSPECTORQUALIFICATIONTEXT Type: view BASIC

Inspector Qualification - Text

I_InspectorQualificationText is a Basic CDS View that provides data about "Inspector Qualification - Text" in SAP S/4HANA. It reads from 1 data source (tq11t) and exposes 5 fields with key fields InspectorQualification, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
tq11t tq11t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_InspectorQualification _InspectorQualification $projection.InspectorQualification = _InspectorQualification.InspectorQualification

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IINSPQUALIFICT view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Inspector Qualification - Text view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey InspectorQualification view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY InspectorQualification tq11t prfql
KEY Language tq11t sprsl
InspectorQualificationText tq11t pqtxt Inspector Qualification Text
_Language _Language
_InspectorQualification _InspectorQualification
@AbapCatalog: {
    sqlViewName: 'IINSPQUALIFICT',
    preserveKey: true,
    compiler.compareFilter: true
}
@EndUserText.label: 'Inspector Qualification - Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #CHECK
@VDM: {
    viewType: #BASIC,
    lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@ObjectModel.supportedCapabilities:
    [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #LANGUAGE_DEPENDENT_TEXT ]
@ObjectModel: {
    usageType: {
        dataClass: #CUSTOMIZING,
        sizeCategory: #M,
        serviceQuality: #A
    },
    dataCategory: #TEXT,
    representativeKey: 'InspectorQualification'
}
@Search.searchable: true
@Metadata.ignorePropagatedAnnotations: true
define view I_InspectorQualificationText as select from tq11t 

   association [0..1] to I_Language as _Language
      on     $projection.Language = _Language.Language
      
   association [1..1] to I_InspectorQualification as _InspectorQualification
      on     $projection.InspectorQualification      = _InspectorQualification.InspectorQualification

{
      //--[ GENERATED:012:GlBfhyFV7kY4h7jYW0xcqG

      @Consumption.valueHelpDefinition: [ 
        { entity:  { name:    'I_InspectorQualificationStdVH',
                     element: 'InspectorQualification' }
        }]
      // ]--GENERATED

  @ObjectModel.foreignKey.association: '_InspectorQualification'
  @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.7 }
  key tq11t.prfql as InspectorQualification,
  @Semantics.language: true
  key tq11t.sprsl as Language, 

  @EndUserText.label: 'Inspector Qualification Text'
  @Semantics.text: true
  @Search: { defaultSearchElement: true, ranking: #MEDIUM, fuzzinessThreshold: 0.7 }
  tq11t.pqtxt as InspectorQualificationText,
    
  /* Associations */
  _Language,
  _InspectorQualification 
}     
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TQ11T"
],
"ASSOCIATED":
[
"I_INSPECTORQUALIFICATION",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/