I_DocGroupRuleScopeText

DDL: I_DOCGROUPRULESCOPETEXT Type: view BASIC

Document group rule scope with text

I_DocGroupRuleScopeText is a Basic CDS View that provides data about "Document group rule scope with text" in SAP S/4HANA. It reads from 1 data source (dd07v) and exposes 5 fields with key fields DocGroupRuleScope, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07v dd07v from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_DocGroupRuleScope _DocGroupRuleScope $projection.DocGroupRuleScope = _DocGroupRuleScope.DocGroupRuleScope
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IDOCGRPRULESCPT view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Document group rule scope with text view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey DocGroupRuleScope view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY DocGroupRuleScope domvalue_l
KEY Language ddlanguage
DocGroupRuleScopeDescription ddtext
_DocGroupRuleScope _DocGroupRuleScope
_Language _Language
@AbapCatalog: {
  sqlViewName: 'IDOCGRPRULESCPT',
  compiler: {
    compareFilter: true
  }
}
@EndUserText.label: 'Document group rule scope with text'
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: {
  representativeKey: 'DocGroupRuleScope',
  dataCategory: #TEXT,
  usageType: {
    dataClass:      #MASTER,
    serviceQuality: #A,
    sizeCategory:   #M
  }
}

define view I_DocGroupRuleScopeText
  as select from dd07v
  association [1..1] to I_DocGroupRuleScope as _DocGroupRuleScope on $projection.DocGroupRuleScope = _DocGroupRuleScope.DocGroupRuleScope
  association [0..1] to I_Language          as _Language          on $projection.Language = _Language.Language
{

      @ObjectModel.foreignKey.association: '_DocGroupRuleScope'
  key domvalue_l       as DocGroupRuleScope,

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

      @Semantics.text: true
      ddtext           as DocGroupRuleScopeDescription,

      _DocGroupRuleScope,

      _Language

}
where
      domname    = 'RFM_RULE_ORIGIN'
  and ddlanguage = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07V"
],
"ASSOCIATED":
[
"I_DOCGROUPRULESCOPE",
"I_LANGUAGE"
],
"BASE":
[],
"VERSION":0
}
}*/