I_InspSpecificationVersionText
Version of Master Insp Charc - Text
I_InspSpecificationVersionText is a Basic CDS View that provides data about "Version of Master Insp Charc - Text" in SAP S/4HANA. It reads from 1 data source (qpmt) and exposes 9 fields with key fields InspectionSpecificationPlant, InspectionSpecification, InspectionSpecificationVersion, Language. It has 4 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| qpmt | qpmt | from |
Associations (4)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Plant | _InspSpecificationPlant | $projection.InspectionSpecificationPlant = _InspSpecificationPlant.Plant |
| [1..1] | I_InspectionSpecification | _InspectionSpecification | $projection.InspectionSpecificationPlant = _InspectionSpecification.InspectionSpecificationPlant and $projection.InspectionSpecification = _InspectionSpecification.InspectionSpecification |
| [1..1] | I_InspSpecificationVersion | _InspSpecificationVersion | $projection.InspectionSpecificationPlant = _InspSpecificationVersion.InspectionSpecificationPlant and $projection.InspectionSpecification = _InspSpecificationVersion.InspectionSpecification and $projection.InspectionSpecificationVersion = _InspSpecificationVersion.InspectionSpecificationVersion |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IINSPSPECVERST | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Version of Master Insp Charc - Text | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| Search.searchable | true | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.representativeKey | InspectionSpecificationVersion | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | InspectionSpecificationPlant | qpmt | zaehler | |
| KEY | InspectionSpecification | |||
| KEY | InspectionSpecificationVersion | qpmt | version | |
| KEY | Language | qpmt | sprache | |
| InspectionSpecificationText | ||||
| _InspSpecificationVersion | _InspSpecificationVersion | |||
| _InspSpecificationPlant | _InspSpecificationPlant | |||
| _InspectionSpecification | _InspectionSpecification | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IINSPSPECVERST'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Version of Master Insp Charc - Text'
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@AccessControl.authorizationCheck: #CHECK
@AccessControl.privilegedAssociations: ['_INSPECTIONSPECIFICATION']
@Search.searchable: true
@ObjectModel.supportedCapabilities:
[ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #SEARCHABLE_ENTITY, #LANGUAGE_DEPENDENT_TEXT ]
@ObjectModel: {
usageType: {
dataClass: #MASTER,
sizeCategory: #M, //expected number of rows < 100.000
serviceQuality: #B // includes A as well
},
representativeKey: 'InspectionSpecificationVersion',
dataCategory: #TEXT
}
@Metadata.ignorePropagatedAnnotations: true
define view I_InspSpecificationVersionText as select from qpmt
association [1..1] to I_Plant as _InspSpecificationPlant
on $projection.InspectionSpecificationPlant = _InspSpecificationPlant.Plant
association [1..1] to I_InspectionSpecification as _InspectionSpecification
on $projection.InspectionSpecificationPlant = _InspectionSpecification.InspectionSpecificationPlant
and $projection.InspectionSpecification = _InspectionSpecification.InspectionSpecification
association [1..1] to I_InspSpecificationVersion as _InspSpecificationVersion
on $projection.InspectionSpecificationPlant = _InspSpecificationVersion.InspectionSpecificationPlant
and $projection.InspectionSpecification = _InspSpecificationVersion.InspectionSpecification
and $projection.InspectionSpecificationVersion = _InspSpecificationVersion.InspectionSpecificationVersion
association [0..1] to I_Language as _Language
on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_InspSpecificationPlant'
@Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8 }
key qpmt.zaehler as InspectionSpecificationPlant,
@ObjectModel.foreignKey.association: '_InspectionSpecification'
@Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8 }
key cast( qpmt.mkmnr as vdm_qmerknr preserving type ) as InspectionSpecification,
key qpmt.version as InspectionSpecificationVersion,
@Semantics.language: true
key qpmt.sprache as Language,
//qpmt.gueltigab,
@Semantics.text: true
@Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #HIGH }
cast( qpmt.kurztext as vdm_qmerknr_text preserving type ) as InspectionSpecificationText,
//qpmt.ltextkz,
//qpmt.ltextekz,
//qpmt.geloescht
/* Associations */
_InspSpecificationVersion,
_InspSpecificationPlant,
_InspectionSpecification,
_Language
}
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