I_DocGroupRuleScope

DDL: I_DOCGROUPRULESCOPE Type: view BASIC

Document group rule scope

I_DocGroupRuleScope is a Basic CDS View that provides data about "Document group rule scope" in SAP S/4HANA. It reads from 1 data source (dd07v) and exposes 3 fields with key field DocGroupRuleScope. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07v dd07v from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_DocGroupRuleScopeText _DocGroupRuleScopeText $projection.DocGroupRuleScope = _DocGroupRuleScopeText.DocGroupRuleScope

Annotations (11)

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

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY DocGroupRuleScope domvalue_l
DocGroupRuleScopeDescription ddtext
_DocGroupRuleScopeText _DocGroupRuleScopeText
@AbapCatalog: {
  sqlViewName: 'IDOCGRPRULESCP',
  compiler: {
    compareFilter: true
  }
}
@EndUserText.label: 'Document group rule scope'
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Search.searchable: true
@ObjectModel: {
  representativeKey: 'DocGroupRuleScope',
  usageType: {
    dataClass:      #MASTER,
    serviceQuality: #A,
    sizeCategory:   #M
  }
}

define view I_DocGroupRuleScope
  as select from dd07v
  association [0..*] to I_DocGroupRuleScopeText as _DocGroupRuleScopeText on $projection.DocGroupRuleScope = _DocGroupRuleScopeText.DocGroupRuleScope
{

      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      @ObjectModel.text.association: '_DocGroupRuleScopeText'
  key domvalue_l       as DocGroupRuleScope,

      @Semantics.text: true
      ddtext           as DocGroupRuleScopeDescription,

      _DocGroupRuleScopeText

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