I_DisputeCaseCreationModeText

DDL: I_DISPUTECASECREATIONMODETEXT Type: view_entity BASIC Package: ODATA_AR_POSTING_RULES

Dispute Case Creation Mode - Text

I_DisputeCaseCreationModeText is a Basic CDS View that provides data about "Dispute Case Creation Mode - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields DisputeCaseCreationMode, Language. It has 2 associations to related views. Part of development package ODATA_AR_POSTING_RULES.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_DisputeCaseCreationMode _DisputeCreationMode $projection.DisputeCaseCreationMode = _DisputeCreationMode.DisputeCaseCreationMode
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
Analytics.technicalName IDCCREATEMODET view
VDM.viewType #BASIC view
EndUserText.label Dispute Case Creation Mode - Text view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey DisputeCaseCreationMode view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY DisputeCaseCreationMode
KEY Language
DisputeCaseCreationModeName
DomainValue dd07t domvalue_l
_DisputeCreationMode _DisputeCreationMode
_Language _Language
@Analytics.technicalName: 'IDCCREATEMODET'
@VDM.viewType: #BASIC
@EndUserText.label: 'Dispute Case Creation Mode - Text'


@ObjectModel: { dataCategory: #TEXT,
                representativeKey: 'DisputeCaseCreationMode',
                usageType.sizeCategory: #S,
                usageType.dataClass:  #MASTER,
                usageType.serviceQuality: #A,
                supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET ],
                modelingPattern: #LANGUAGE_DEPENDENT_TEXT              
                }

@Metadata.ignorePropagatedAnnotations: true  
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Search.searchable: true


define view entity I_DisputeCaseCreationModeText as select from dd07t

association [1..1] to I_DisputeCaseCreationMode as _DisputeCreationMode on $projection.DisputeCaseCreationMode = _DisputeCreationMode.DisputeCaseCreationMode

association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
  key cast( substring( domvalue_l, 1, 2) as far_pstrl_disputecase_mode ) as DisputeCaseCreationMode,
  @ObjectModel.foreignKey.association: '_Language'
  @Semantics.language
  key cast( ddlanguage as spras ) as Language,


  @Search.defaultSearchElement: true
  @Search.fuzzinessThreshold: 0.8
  @Search.ranking: #LOW
  @Semantics.text
  cast(ddtext as far_pstrl_disputecase_mode_nam preserving type ) as DisputeCaseCreationModeName,
  @Analytics.hidden: true
  @Consumption.hidden: true
  dd07t.domvalue_l as DomainValue,
  
  _DisputeCreationMode,
  _Language
}
where domname = 'FAR_PSTRL_DISPUTECASE_REASON' and as4local = 'A';