C_WarrantyClaimMileageUnitVH
Warranty Claim Mileage
C_WarrantyClaimMileageUnitVH is a Consumption CDS View that provides data about "Warranty Claim Mileage" in SAP S/4HANA. It reads from 1 data source (I_UnitOfMeasure) and exposes 2 fields with key field UnitOfMeasure.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_UnitOfMeasure | I_UnitOfMeasure | from |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CWTYCLMMILUNITVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Warranty Claim Mileage | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.representativeKey | UnitOfMeasure | view | |
| ObjectModel.usageType.dataClass | #ORGANIZATIONAL | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| VDM.viewType | #CONSUMPTION | view | |
| Search.searchable | true | view | |
| Feature | LO_WTY_CLAIM_MANAGEMENT | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | UnitOfMeasure | UnitOfMeasure | ||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'CWTYCLMMILUNITVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Warranty Claim Mileage'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel:{
representativeKey: 'UnitOfMeasure',
usageType:{
dataClass : #ORGANIZATIONAL,
serviceQuality : #A,
sizeCategory : #S
}
}
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.resultSet.sizeCategory: #XS
@VDM.viewType: #CONSUMPTION
@Search.searchable: true
@Feature: 'LO_WTY_CLAIM_MANAGEMENT'
define view C_WarrantyClaimMileageUnitVH
//as select from I_WrntyReturnedStatus
as select from I_UnitOfMeasure
//association [0..*] to I_WrntyReturnedStatusText as _Text on $projection.WrntyClaimReturnedPartner = _Text.WrntyClaimReturnedPartner
// and $projection.WrntySupplierReturnParts = _Text.WrntySupplierReturnParts
{
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.7
@Search.ranking: #HIGH
@ObjectModel.text.association: '_Text'
key UnitOfMeasure,
_Text
} where UnitOfMeasure = 'KM' or UnitOfMeasure = 'MI'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_UNITOFMEASURE"
],
"ASSOCIATED":
[
"I_UNITOFMEASURETEXT"
],
"BASE":
[
"I_UNITOFMEASURE"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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