I_Inspectioncodegrouptext
Inspection Code Group - Text
I_Inspectioncodegrouptext is a Basic CDS View that provides data about "Inspection Code Group - Text" in SAP S/4HANA. It reads from 1 data source (qpgt) and exposes 6 fields with key fields InspectionCatalog, InspectionCodeGroup, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| qpgt | qpgt | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Inspectioncatalog | _InspectionCatalog | $projection.InspectionCatalog = _InspectionCatalog.InspectionCatalog |
| [1..1] | I_InspectionCodeGroup | _InspectionCodeGroup | $projection.InspectionCatalog = _InspectionCodeGroup.InspectionCatalog and $projection.InspectionCodeGroup = _InspectionCodeGroup.InspectionCodeGroup |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IINSPCODEGRPTXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Inspection Code Group - Text | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | InspectionCodeGroup | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
@AbapCatalog.sqlViewName: 'IINSPCODEGRPTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Inspection Code Group - Text'
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@ObjectModel.supportedCapabilities:
[ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #LANGUAGE_DEPENDENT_TEXT ]
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'InspectionCodeGroup'
@ObjectModel.usageType: { serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING }
@Metadata.ignorePropagatedAnnotations: true
define view I_Inspectioncodegrouptext
as select from qpgt
association [1..1] to I_Inspectioncatalog as _InspectionCatalog on $projection.InspectionCatalog = _InspectionCatalog.InspectionCatalog
association [1..1] to I_InspectionCodeGroup as _InspectionCodeGroup on $projection.InspectionCatalog = _InspectionCodeGroup.InspectionCatalog
and $projection.InspectionCodeGroup = _InspectionCodeGroup.InspectionCodeGroup
{
@ObjectModel.foreignKey.association: '_InspectionCatalog'
key qpgt.katalogart as InspectionCatalog,
key qpgt.codegruppe as InspectionCodeGroup,
@Semantics.language: true
key qpgt.sprache as Language,
@Semantics.text: true
cast( qpgt.kurztext as vdm_qktextgr preserving type ) as InspSpecAddlCodeGroupText,
// qpgt.ltextv,
// qpgt.inaktiv
/* Associations */
_InspectionCatalog,
_InspectionCodeGroup
}
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