R_FinClsgRunProcessingOption

DDL: R_FINCLSGRUNPROCESSINGOPTION Type: view_entity BASIC Package: ODATA_FI_CLS_ACT_LIST

Financial Closing Run Processing Option

R_FinClsgRunProcessingOption is a Basic CDS View that provides data about "Financial Closing Run Processing Option" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields. It has 1 association to related views. Part of development package ODATA_FI_CLS_ACT_LIST.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] R_FinClsgRunProcgOptionText _Text

Annotations (14)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Financial Closing Run Processing Option view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey FinClosingRunProcessingOption view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #L view
UI.textArrangement #TEXT_ONLY view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #BASIC view
Search.searchable true view
Consumption.ranked true view

Fields (2)

KeyFieldSource TableSource FieldDescription
DomainValue dd07l domvalue_l
_Text _Text
@AbapCatalog.viewEnhancementCategory: [ #NONE ]

@AccessControl.authorizationCheck: #NOT_REQUIRED

@EndUserText.label: 'Financial Closing Run Processing Option'

@Metadata.ignorePropagatedAnnotations: true

@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.representativeKey: 'FinClosingRunProcessingOption'
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.usageType: { serviceQuality: #A, dataClass: #META, sizeCategory: #L }

@UI.textArrangement: #TEXT_ONLY

@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType: #BASIC

@Search.searchable: true
@Consumption.ranked: true
/*+[hideWarning] { "IDS" : [ "KEY_CHECK", "CALCULATED_FIELD_CHECK" ]  } */
define root view entity R_FinClsgRunProcessingOption
  as select from dd07l

  composition [0..*] of R_FinClsgRunProcgOptionText as _Text

{
      @ObjectModel.text.association: '_Text'
  key cast(
      left(dd07l.domvalue_l,1)
        as cls_run_processing_option preserving type) as FinClosingRunProcessingOption,

  @Search.defaultSearchElement: true
  @Search.fuzzinessThreshold: 0.8
  @Search.ranking: #HIGH
  @Consumption.hidden: true
  @Analytics.hidden: true
  dd07l.domvalue_l as DomainValue,
      _Text
}

where dd07l.domname  = 'CLS_RUN_PROCESSING_OPTION'
  and dd07l.as4local = 'A'
  and dd07l.as4vers  = '0000'