I_DefectLocationCatalogText
Defect Location Catalog Text
I_DefectLocationCatalogText is a Basic CDS View that provides data about "Defect Location Catalog Text" in SAP S/4HANA. It reads from 1 data source (I_InspectionCatalogText) and exposes 5 fields with key fields DefectLocationCatalog, Language. Part of development package VDM_QM_NOTIFICATION.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_InspectionCatalogText | I_InspectionCatalogText | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Defect Location Catalog Text | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | DefectLocationCatalog | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| Analytics.technicalName | IDEFLOCCATT | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DefectLocationCatalog | |||
| KEY | Language | Language | ||
| DefectLocationCatalogText | ||||
| _DefectLocationCatalog | _DefectLocationCatalog | |||
| _Language | _Language |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Defect Location Catalog Text'
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'DefectLocationCatalog'
@ObjectModel.usageType: { serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING }
@ObjectModel.dataCategory: #TEXT
@Analytics.technicalName: 'IDEFLOCCATT'
define view entity I_DefectLocationCatalogText as select from I_InspectionCatalogText
association[1..1] to I_DefectLocationCatalog as _DefectLocationCatalog on $projection.DefectLocationCatalog = _DefectLocationCatalog.DefectLocationCatalog
association[1..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_DefectLocationCatalog'
key cast( InspectionCatalog as vdm_qfeocat preserving type ) as DefectLocationCatalog,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key Language,
@Semantics.text: true
cast( InspSpecAdditionalCatalogText as vdm_qfeocat_text preserving type ) as DefectLocationCatalogText,
/* Associations */
_DefectLocationCatalog,
_Language
} where //InspectionCatalog = 'B' or //Object Parts
InspectionCatalog = 'E' //Defect Locations
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