I_SLCQuestionType
Question Type
I_SLCQuestionType is a Basic CDS View that provides data about "Question Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field SLCQuestionType. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_SLCQuestionTypeText | _SLCQuestionTypeText | $projection.SLCQuestionType = _SLCQuestionTypeText.SLCQuestionType |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Question Type | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| AbapCatalog.compiler.compareFilter | 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 | ISLCQSTTYPE | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SLCQuestionType | |||
| _SLCQuestionTypeText | _SLCQuestionTypeText |
@EndUserText.label: 'Question Type' //same as DDL description
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@Metadata.ignorePropagatedAnnotations: true
@AbapCatalog.compiler.compareFilter: 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 ]
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'SLCQuestionType'
@AbapCatalog.sqlViewName: 'ISLCQSTTYPE'
define view I_SLCQuestionType as select from dd07l
association [0..*] to I_SLCQuestionTypeText as _SLCQuestionTypeText on $projection.SLCQuestionType = _SLCQuestionTypeText.SLCQuestionType
{
@ObjectModel.text.association: '_SLCQuestionTypeText'
key cast( substring( domvalue_l, 1, 2) as /srmsmc/qst_dtyp_format_code) as SLCQuestionType,
_SLCQuestionTypeText
}
where domname = '/SRMSMC/QST_DTYP_FORMAT_CODE'
and as4local = 'A'
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA