C_CADocumentTypeValueHelp

DDL: C_CADOCUMENTTYPEVALUEHELP SQL: CCADOCTYPEVH Type: view CONSUMPTION

Belegart Wertehilfe

C_CADocumentTypeValueHelp is a Consumption CDS View that provides data about "Belegart Wertehilfe" in SAP S/4HANA. It reads from 2 data sources (I_CAApplicationArea, I_CADocumentType) and exposes 2 fields with key field CADocumentType.

Data Sources (2)

SourceAliasJoin Type
I_CAApplicationArea _CAApplArea inner
I_CADocumentType _CADocType from

Parameters (1)

NameTypeDefault
P_Language sylangu

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CCADOCTYPEVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Belegart Wertehilfe view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #C view
Search.searchable true view
VDM.viewType #CONSUMPTION view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CADocumentType I_CADocumentType CADocumentType
CADocumentTypeName
@AbapCatalog.sqlViewName: 'CCADOCTYPEVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Belegart Wertehilfe'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #C
@Search.searchable: true
@VDM.viewType: #CONSUMPTION
define view C_CADocumentTypeValueHelp
  with parameters 
    @Consumption.hidden: true
    @Environment.systemField: #SYSTEM_LANGUAGE
    P_Language : sylangu  
as select from I_CADocumentType as _CADocType
  inner join I_CAApplicationArea as _CAApplArea
    on  _CADocType.CAApplicationArea = _CAApplArea.CAApplicationArea
    and _CAApplArea.CAApplicationAreaIsActive = 'X'
{
    @Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8 }
    @ObjectModel.text.element: 'CADocumentTypeName'
    key _CADocType.CADocumentType,
    @Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8 }
    @Semantics.text: true
    _CADocType._Text[1:Language = :P_Language].CADocumentTypeName
}