I_InspResultRecordingViewText
Inspection Results Recording View Text
I_InspResultRecordingViewText is a Basic CDS View that provides data about "Inspection Results Recording View Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields InspResultRecordingView, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IINSPRSLTRECGVWT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Inspection Results Recording View Text | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ObjectModel.representativeKey | InspResultRecordingView | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | InspResultRecordingView | |||
| KEY | Language | ddlanguage | ||
| InspResultRecordingViewText | ||||
| _InspResultRecordingView | _InspResultRecordingView | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IINSPRSLTRECGVWT'
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Inspection Results Recording View Text'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType: {
dataClass: #META,
sizeCategory: #S,
serviceQuality: #A
}
@ObjectModel.dataCategory: #TEXT
@AbapCatalog.compiler.compareFilter: true
@ObjectModel.representativeKey: 'InspResultRecordingView'
define view I_InspResultRecordingViewText as select from dd07t
association[0..1] to I_Language as _Language on $projection.Language = _Language.Language
association[1..1] to I_InspResultRecordingView as _InspResultRecordingView on $projection.InspResultRecordingView = _InspResultRecordingView.InspResultRecordingView
{
key cast ( substring( dd07t.domvalue_l, 1, 2 ) as vdm_qerfsicht ) as InspResultRecordingView,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key ddlanguage as Language,
@Semantics.text: true
cast( ddtext as vdm_qerfsicht_text ) as InspResultRecordingViewText,
/* Associations */
_InspResultRecordingView,
_Language
}
where domname = 'QERFSICHT' 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