I_RangeOfCoverageProfileText

DDL: I_RANGEOFCOVERAGEPROFILETEXT SQL: IRANGEOFCOVERTXT Type: view BASIC

Range of Coverage Profile - Text

I_RangeOfCoverageProfileText is a Basic CDS View that provides data about "Range of Coverage Profile - Text" in SAP S/4HANA. It reads from 1 data source (t438s) and exposes 7 fields with key fields Plant, RangeOfCoverageProfile, Language. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
t438s txt from

Associations (3)

CardinalityTargetAliasCondition
[1..1] I_Plant _Plant $projection.Plant = _Plant.Plant
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_RangeOfCoverageProfile _Profile $projection.Plant = _Profile.Plant and $projection.RangeOfCoverageProfile = _Profile.RangeOfCoverageProfile

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName IRANGEOFCOVERTXT view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 001 view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.representativeKey RangeOfCoverageProfile view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label Range of Coverage Profile - Text view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Plant werks
KEY RangeOfCoverageProfile
KEY Language t438s spras
RangeOfCoverageProfileName
_Profile _Profile
_Plant _Plant
_Language _Language
@AbapCatalog.sqlViewName: 'IRANGEOFCOVERTXT'
@AbapCatalog.buffering: {status: #ACTIVE, type: #GENERIC, numberOfKeyFields: 001}
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #SEARCHABLE_ENTITY]
@ObjectModel.representativeKey: 'RangeOfCoverageProfile'
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Range of Coverage Profile - Text'

define view I_RangeOfCoverageProfileText
  as select from t438s as txt
  
  association [1..1] to I_Plant                  as _Plant    on  $projection.Plant    = _Plant.Plant
  association [0..1] to I_Language               as _Language on  $projection.Language = _Language.Language
  association [1..1] to I_RangeOfCoverageProfile as _Profile  on  $projection.Plant                  = _Profile.Plant
                                                              and $projection.RangeOfCoverageProfile = _Profile.RangeOfCoverageProfile
{
      @ObjectModel.foreignKey.association: '_Plant'
  key werks                                            as Plant,
      @ObjectModel.foreignKey.association: '_Profile'  
      @ObjectModel.text.element: ['RangeOfCoverageProfileName']
  key cast(rwpro as pph_rwpro preserving type)         as RangeOfCoverageProfile,
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key txt.spras                                        as Language,
      @Search: {defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8}
      @Semantics.text: true
      cast(txt.text40 as pph_rwprotxt preserving type) as RangeOfCoverageProfileName,

      //Associations

      @ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT]
      _Profile,
      _Plant,
      _Language
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T438S"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_PLANT",
"I_RANGEOFCOVERAGEPROFILE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/