I_InspectionResultStatus
Inspection Result Status
I_InspectionResultStatus is a Basic CDS View that provides data about "Inspection Result Status" in SAP S/4HANA. It reads from 1 data source (tq76) and exposes 3 fields with key field InspectionResultStatus. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tq76 | tq76 | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_Inspectionresultstatustext | _Text | $projection.InspectionResultStatus = _Text.InspectionResultStatus |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IINSPRESULTSTAT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Inspection Result Status | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| ObjectModel.representativeKey | InspectionResultStatus | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | InspectionResultStatus | tq76 | status | |
| InspectionResultStatusText | ||||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IINSPRESULTSTAT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Inspection Result Status'
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@ObjectModel.supportedCapabilities:
[ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET ]
@ObjectModel.representativeKey: 'InspectionResultStatus'
@ObjectModel.usageType: {
dataClass: #META,
sizeCategory: #S,
serviceQuality: #A
}
@Metadata.ignorePropagatedAnnotations: true
define view I_InspectionResultStatus as select from tq76
association [0..*] to I_Inspectionresultstatustext as _Text
on $projection.InspectionResultStatus = _Text.InspectionResultStatus
{
@ObjectModel.text.association: '_Text'
key tq76.status as InspectionResultStatus,
// Do show text field directly in consumption/odata layer; in such a layer text is consumed via association _Text
@UI.hidden: true
_Text[1:Language = $session.system_language].InspectionResultStatusText,
//Associations
_Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_INSPECTIONRESULTSTATUSTEXT",
"TQ76"
],
"ASSOCIATED":
[
"I_INSPECTIONRESULTSTATUSTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"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