C_WrntyCustClaimTypeValueHelp
Customer Warranty Claim types
C_WrntyCustClaimTypeValueHelp is a Consumption CDS View that provides data about "Customer Warranty Claim types" in SAP S/4HANA. It reads from 1 data source (I_WrntyClaimType) and exposes 2 fields with key field WarrantyClaimType.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_WrntyClaimType | I_WrntyClaimType | from |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CWRNTYCCLMTYPEVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Customer Warranty Claim types | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | WarrantyClaimType | view | |
| ObjectModel.usageType.dataClass | #ORGANIZATIONAL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| VDM.viewType | #CONSUMPTION | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | WarrantyClaimType | WarrantyClaimType | Claim Type | |
| _Text | _Text |
@AbapCatalog.sqlViewName: 'CWRNTYCCLMTYPEVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Customer Warranty Claim types'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel:{
representativeKey: 'WarrantyClaimType',
usageType:{
dataClass : #ORGANIZATIONAL,
serviceQuality : #C,
sizeCategory : #S
}
}
@ObjectModel.dataCategory: #VALUE_HELP
@VDM.viewType: #CONSUMPTION
@Search.searchable: true
@Consumption.ranked: true
define view C_WrntyCustClaimTypeValueHelp as
select from I_WrntyClaimType
{
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@ObjectModel.text.association: '_Text'
@EndUserText.label: 'Claim Type'
key WarrantyClaimType,
_Text
} where WarrantyClaimTypeUsage = 'F'
and WarrantyClaimVersionCategory like '%C'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_WRNTYCLAIMTYPE"
],
"ASSOCIATED":
[
"I_WRNTYCLAIMTYPETEXT"
],
"BASE":
[
"I_WRNTYCLAIMTYPE"
],
"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