I_InspectionLotTypeText
Inspection Type - Text
I_InspectionLotTypeText is a Basic CDS View that provides data about "Inspection Type - Text" in SAP S/4HANA. It reads from 1 data source (tq30t) and exposes 5 fields with key fields InspectionLotType, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tq30t | tq30t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_InspectionLotType | _InspectionLotType | $projection.InspectionLotType = _InspectionLotType.InspectionLotType |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IINSPLOTTYPETEXT | view | |
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Inspection Type - Text | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | InspectionLotType | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Search.searchable | true | view |
@AbapCatalog.sqlViewName: 'IINSPLOTTYPETEXT'
@AbapCatalog.preserveKey: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Inspection Type - 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.usageType: { dataClass: #CUSTOMIZING, sizeCategory: #S, serviceQuality: #A }
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'InspectionLotType'
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
define view I_InspectionLotTypeText as select from tq30t
association [1..1] to I_InspectionLotType as _InspectionLotType
on $projection.InspectionLotType = _InspectionLotType.InspectionLotType
association [0..1] to I_Language as _Language
on $projection.Language = _Language.Language
{
key tq30t.art as InspectionLotType,
@Semantics.language: true
key tq30t.sprache as Language,
@Semantics.text: true
@Search : { defaultSearchElement: true,
fuzzinessThreshold: 0.8 }
cast( tq30t.kurztext as vdm_qpart_text preserving type ) as InspectionLotTypeText,
// tq30t.ltxa1,
/* Associations */
_InspectionLotType,
_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