I_DocGroupRuleScope
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)
| Source | Alias | Join Type |
|---|---|---|
| dd07v | dd07v | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_DocGroupRuleScopeText | _DocGroupRuleScopeText | $projection.DocGroupRuleScope = _DocGroupRuleScopeText.DocGroupRuleScope |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
}*/
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