I_DSD_TourControlParameterText

DDL: I_DSD_TOURCONTROLPARAMETERTEXT Type: view_entity BASIC

Control Parameter for Differences - Text

I_DSD_TourControlParameterText is a Basic CDS View that provides data about "Control Parameter for Differences - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields CtrlParamForQuantityDifference, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_DSD_TourControlParameter _TourControlParameter $projection.CtrlParamForQuantityDifference = _TourControlParameter.CtrlParamForQuantityDifference
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Control Parameter for Differences - Text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY CtrlParamForQuantityDifference
KEY Language ddlanguage
CtrlParamForQtyDifferenceText ddtext
_TourControlParameter _TourControlParameter
_Language _Language
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Control Parameter for Differences - Text'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: { usageType:{
                  serviceQuality: #X,
                  sizeCategory: #S,
                  dataClass: #MIXED },
                dataCategory: #TEXT }
@VDM: { viewType: #BASIC }

define view entity I_DSD_TourControlParameterText
  as select from dd07t

  association [0..1] to I_DSD_TourControlParameter as _TourControlParameter on $projection.CtrlParamForQuantityDifference 
                                                                               = _TourControlParameter.CtrlParamForQuantityDifference
  association [0..1] to I_Language                 as _Language             on $projection.Language = _Language.Language

{

  key cast( substring(dd07t.domvalue_l, 1, 3) as /dsd/hh_spec_return ) as CtrlParamForQuantityDifference,

      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key ddlanguage                        as Language,

      @Semantics.text: true
      ddtext                            as CtrlParamForQtyDifferenceText,

      //Associations

      _TourControlParameter,
      _Language
}
where ( dd07t.domname  = '/DSD/DE_CONTROL_PAR' )
  and ( dd07t.as4local = 'A' )
  and  ddlanguage = $session.system_language;
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_DSD_TOURCONTROLPARAMETER",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/