C_WrntyCustClaimTypeValueHelp

DDL: C_WRNTYCUSTCLAIMTYPEVALUEHELP SQL: CWRNTYCCLMTYPEVH Type: view CONSUMPTION

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)

SourceAliasJoin Type
I_WrntyClaimType I_WrntyClaimType from

Annotations (14)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/