I_CL_PurchaseTypeValueHelp

DDL: I_CL_PURCHASETYPEVALUEHELP Type: view_entity BASIC Package: GLO_FIN_IS_CL

Purchase Type for Chile

I_CL_PurchaseTypeValueHelp is a Basic CDS View that provides data about "Purchase Type for Chile" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field CL_PurchaseType. Part of development package GLO_FIN_IS_CL.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Annotations (13)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Consumption.ranked true view
EndUserText.label Purchase Type for Chile view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey CL_PurchaseType view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CL_PurchaseType
CL_PurchaseTypeDescription Text CL_PurchaseTypeDescription
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Consumption.ranked: true
@EndUserText.label: 'Purchase Type for Chile'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.representativeKey: 'CL_PurchaseType'
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.usageType: { dataClass: #META, serviceQuality: #A, sizeCategory: #S }
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
define view entity I_CL_PurchaseTypeValueHelp
  as select from dd07l
  left outer to one join I_CL_PurchaseTypeText as Text on  Text.DomainValue = dd07l.domvalue_l
                                                       and Text.Language    = $session.system_language
{
    @Search.defaultSearchElement: true
    @Search.fuzzinessThreshold: 0.8
    @Search.ranking: #HIGH
    @ObjectModel.text.element: ['CL_PurchaseTypeDescription']
  key cast( substring( dd07l.domvalue_l, 1, 2 ) as ficl_purchase_type ) as CL_PurchaseType,
    @UI.textArrangement: #TEXT_LAST
    @Semantics.text: true
    @Search.defaultSearchElement: true  
    @Search.fuzzinessThreshold: 0.8 
    @Search.ranking: #MEDIUM
    Text.CL_PurchaseTypeDescription
}
where dd07l.domname  = 'FICL_PURCHASE_TYPE'
  and dd07l.as4local = 'A'
  and dd07l.as4vers  = '0000'