I_InspectorQualificationText
Inspector Qualification - Text
I_InspectorQualificationText is a Basic CDS View that provides data about "Inspector Qualification - Text" in SAP S/4HANA. It reads from 1 data source (tq11t) and exposes 5 fields with key fields InspectorQualification, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tq11t | tq11t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [1..1] | I_InspectorQualification | _InspectorQualification | $projection.InspectorQualification = _InspectorQualification.InspectorQualification |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IINSPQUALIFICT | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| EndUserText.label | Inspector Qualification - Text | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | InspectorQualification | view | |
| Search.searchable | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
@AbapCatalog: {
sqlViewName: 'IINSPQUALIFICT',
preserveKey: true,
compiler.compareFilter: true
}
@EndUserText.label: 'Inspector Qualification - Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #CHECK
@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: #M,
serviceQuality: #A
},
dataCategory: #TEXT,
representativeKey: 'InspectorQualification'
}
@Search.searchable: true
@Metadata.ignorePropagatedAnnotations: true
define view I_InspectorQualificationText as select from tq11t
association [0..1] to I_Language as _Language
on $projection.Language = _Language.Language
association [1..1] to I_InspectorQualification as _InspectorQualification
on $projection.InspectorQualification = _InspectorQualification.InspectorQualification
{
//--[ GENERATED:012:GlBfhyFV7kY4h7jYW0xcqG
@Consumption.valueHelpDefinition: [
{ entity: { name: 'I_InspectorQualificationStdVH',
element: 'InspectorQualification' }
}]
// ]--GENERATED
@ObjectModel.foreignKey.association: '_InspectorQualification'
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.7 }
key tq11t.prfql as InspectorQualification,
@Semantics.language: true
key tq11t.sprsl as Language,
@EndUserText.label: 'Inspector Qualification Text'
@Semantics.text: true
@Search: { defaultSearchElement: true, ranking: #MEDIUM, fuzzinessThreshold: 0.7 }
tq11t.pqtxt as InspectorQualificationText,
/* Associations */
_Language,
_InspectorQualification
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TQ11T"
],
"ASSOCIATED":
[
"I_INSPECTORQUALIFICATION",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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