I_QualityTaskType

DDL: I_QUALITYTASKTYPE SQL: IQLTYTSKTYPE Type: view BASIC

Quality Task Type

I_QualityTaskType is a Basic CDS View (Dimension) that provides data about "Quality Task Type" in SAP S/4HANA. It reads from 1 data source (tqstasktype) and exposes 3 fields with key field QualityTaskType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
tqstasktype tqstasktype from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_QualityTaskTypeText _QualityTaskTypeText $projection.QualityTaskType = _QualityTaskTypeText.QualityTaskType

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IQLTYTSKTYPE view
ClientHandling.algorithm #SESSION_VARIABLE view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.representativeKey QualityTaskType view
ObjectModel.resultSet.sizeCategory #XS view
EndUserText.label Quality Task Type view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY QualityTaskType tasktype
QltyTaskFollowUpActionSel foaselection
_QualityTaskTypeText _QualityTaskTypeText
@AbapCatalog.sqlViewName: 'IQLTYTSKTYPE'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Analytics.dataCategory: #DIMENSION
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED 
@ObjectModel: {
    usageType: {
        dataClass: #CUSTOMIZING,
        sizeCategory: #S,
        serviceQuality: #A
    },
    representativeKey: 'QualityTaskType',
    resultSet.sizeCategory: #XS
}
@EndUserText.label: 'Quality Task Type'


define view I_QualityTaskType as select from tqstasktype 

    association [0..*] to I_QualityTaskTypeText as _QualityTaskTypeText on $projection.QualityTaskType = _QualityTaskTypeText.QualityTaskType

{
    @ObjectModel.text.association: '_QualityTaskTypeText'
    key tasktype as QualityTaskType,
    foaselection as QltyTaskFollowUpActionSel,
    
    /* Associations */
    _QualityTaskTypeText
}