I_DocGroupRuleScopeText
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)
| Source | Alias | Join Type |
|---|---|---|
| dd07v | dd07v | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_DocGroupRuleScope | _DocGroupRuleScope | $projection.DocGroupRuleScope = _DocGroupRuleScope.DocGroupRuleScope |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA