I_DisputeCaseCreationModeText

DDL: I_DISPUTECASECREATIONMODETEXT SQL: IDCCREATEMODET Type: view BASIC

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.

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 (15)

NameValueLevelField
AbapCatalog.sqlViewName IDCCREATEMODET view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true 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
ClientHandling.algorithm #SESSION_VARIABLE 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
@AbapCatalog.sqlViewName: 'IDCCREATEMODET'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@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              
                }

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


define view 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';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_DISPUTECASECREATIONMODE",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/