I_INSPECTIONLOTTYPETEXT

CDS View

Inspection Type - Text

I_INSPECTIONLOTTYPETEXT is a CDS View in S/4HANA. Inspection Type - Text. It contains 1 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
C_Insplot_Object view left_outer CONSUMPTION Inspection Lot Object Page

Fields (1)

KeyField CDS FieldsUsed in Views
InspectionLotTypeText InspectionLotTypeText 1
@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
}