I_SLCQuestionTypeText

DDL: I_SLCQUESTIONTYPETEXT SQL: ISLCQSTTYPETEXT Type: view BASIC

Question Type - Text

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

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_SLCQuestionType _SLCQuestionType $projection.SLCQuestionType = _SLCQuestionType.SLCQuestionType

Annotations (13)

NameValueLevelField
EndUserText.label Question Type - Text view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey SLCQuestionType view
AbapCatalog.sqlViewName ISLCQSTTYPETEXT view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SLCQuestionType
KEY Language ddlanguage
SLCQuestionTypeName
_SLCQuestionType _SLCQuestionType
_Language _Language
@EndUserText.label: 'Question Type - Text' //same as DDL description

@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@AbapCatalog.compiler.compareFilter: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.dataClass:  #META
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.supportedCapabilities: 
[ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #LANGUAGE_DEPENDENT_TEXT ]
@ClientHandling.algorithm: #SESSION_VARIABLE 
@ObjectModel.representativeKey: 'SLCQuestionType'
@AbapCatalog.sqlViewName: 'ISLCQSTTYPETEXT'
define view I_SLCQuestionTypeText as select from dd07t
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
  association [1..1] to I_SLCQuestionType as _SLCQuestionType  on $projection.SLCQuestionType = _SLCQuestionType.SLCQuestionType
{
  key  cast( substring( domvalue_l, 1, 2) as /srmsmc/qst_dtyp_format_code)  as SLCQuestionType,

  @Semantics.language: true
  key ddlanguage as Language,

  @Semantics.text: true
  cast(ddtext as /srmsmc/type_descr preserving type) as SLCQuestionTypeName, 
  
  _SLCQuestionType, 
  _Language 
}
where domname = '/SRMSMC/QST_DTYP_FORMAT_CODE' and as4local = 'A'
    
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_SLCQUESTIONTYPE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/