I_TechObjInspectionLevelCode
Technical Object Inspection Level
I_TechObjInspectionLevelCode is a Basic CDS View (Dimension) that provides data about "Technical Object Inspection Level" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field TechObjInspectionLevelCode. It has 1 association to related views. Part of development package EAM_IDMS.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_TechObjInspectionLevelText | _InspectionLevelText | $projection.TechObjInspectionLevelCode = _InspectionLevelText.TechObjInspectionLevelCode |
Annotations (17)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ITECHOBJINSPLVL | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Technical Object Inspection Level | view | |
| VDM.viewType | #BASIC | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.internalName | #LOCAL | view | |
| Analytics.dataExtraction.enabled | true | view | |
| ObjectModel.representativeKey | TechObjInspectionLevelCode | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | TechObjInspectionLevelCode | |||
| _InspectionLevelText | _InspectionLevelText |
@AbapCatalog: {
sqlViewName: 'ITECHOBJINSPLVL',
compiler.compareFilter: true,
preserveKey: true
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Technical Object Inspection Level'
@VDM.viewType: #BASIC
@Analytics: {
dataCategory: #DIMENSION,
internalName:#LOCAL,
dataExtraction.enabled: true
}
@ObjectModel :
{
representativeKey: 'TechObjInspectionLevelCode',
usageType.dataClass: #META,
usageType.serviceQuality: #A,
usageType.sizeCategory: #S,
resultSet.sizeCategory: #XS,
modelingPattern: #ANALYTICAL_DIMENSION,
supportedCapabilities: [#SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET,#EXTRACTION_DATA_SOURCE,#ANALYTICAL_DIMENSION]
}
@Metadata.ignorePropagatedAnnotations: true
define view I_TechObjInspectionLevelCode as select from dd07l
association [0..*] to I_TechObjInspectionLevelText as _InspectionLevelText on $projection.TechObjInspectionLevelCode = _InspectionLevelText.TechObjInspectionLevelCode
{
@ObjectModel.text.association: '_InspectionLevelText'
key cast(dd07l.domvalue_l as eame_idms_type) as TechObjInspectionLevelCode,
_InspectionLevelText
}
where
dd07l.domname = 'EAM_IDMS_TYPE_D'
and dd07l.as4local = 'A'
and dd07l.as4vers = '0000'
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