I_InspectionLotTypeText

DDL: I_INSPECTIONLOTTYPETEXT SQL: IINSPLOTTYPETEXT Type: view BASIC

Inspection Type - Text

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

Data Sources (1)

SourceAliasJoin Type
tq30t tq30t from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_InspectionLotType _InspectionLotType $projection.InspectionLotType = _InspectionLotType.InspectionLotType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IINSPLOTTYPETEXT view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Inspection Type - Text view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey InspectionLotType view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY InspectionLotType tq30t art
KEY Language tq30t sprache
InspectionLotTypeText
_InspectionLotType _InspectionLotType
_Language _Language
@AbapCatalog.sqlViewName: 'IINSPLOTTYPETEXT'
@AbapCatalog.preserveKey: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Inspection Type - Text'
@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: #S, serviceQuality: #A }
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'InspectionLotType'
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
define view I_InspectionLotTypeText as select from tq30t 
 
   association [1..1] to I_InspectionLotType     as _InspectionLotType
      on     $projection.InspectionLotType   = _InspectionLotType.InspectionLotType

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

{
    key tq30t.art as InspectionLotType,
    @Semantics.language: true
    key tq30t.sprache as Language,
    @Semantics.text: true
    @Search : { defaultSearchElement: true,
                    fuzzinessThreshold: 0.8 }
    cast( tq30t.kurztext as vdm_qpart_text preserving type ) as InspectionLotTypeText,
//    tq30t.ltxa1,

    
    /* Associations */
    _InspectionLotType, 
    _Language
}