I_PubSecSplitRuleDistrMethTxt
Splitting Rule Distribution Method - Txt
I_PubSecSplitRuleDistrMethTxt is a Basic CDS View that provides data about "Splitting Rule Distribution Method - Txt" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields LanguageCode, PubSecSplitDistMethod. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Language | _Language | $projection.LanguageCode = _Language.Language |
| [0..1] | I_PubSecSplitRuleDistrMethod | _SplitRuleDistMethod | $projection.PubSecSplitDistMethod = _SplitRuleDistMethod.PubSecSplitDistMethod |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISPLITDISTMETHT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Splitting Rule Distribution Method - Txt | view | |
| ObjectModel.representativeKey | PubSecSplitDistMethod | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.viewType | #BASIC | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | LanguageCode | dd07t | ddlanguage | |
| KEY | PubSecSplitDistMethod | |||
| PubSecSplitDistMethodText | ||||
| _SplitRuleDistMethod | _SplitRuleDistMethod | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'ISPLITDISTMETHT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Splitting Rule Distribution Method - Txt'
@ObjectModel: {
representativeKey: 'PubSecSplitDistMethod',
dataCategory: #TEXT
}
@ObjectModel.usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #A,
sizeCategory: #S
}
@VDM.viewType: #BASIC
//@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
//@Search.searchable: true
define view I_PubSecSplitRuleDistrMethTxt
as select from dd07t
association [1..1] to I_Language as _Language on $projection.LanguageCode = _Language.Language
association [0..1] to I_PubSecSplitRuleDistrMethod as _SplitRuleDistMethod on $projection.PubSecSplitDistMethod = _SplitRuleDistMethod.PubSecSplitDistMethod
{
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key dd07t.ddlanguage as LanguageCode,
@ObjectModel.text.element: ['PubSecSplitDistMethodText']
// @ObjectModel.foreignKey.association: '_SplitRuleType'
key cast( substring( dd07t.domvalue_l, 1, 4 ) as psm_s4c_distribution_method preserving type ) as PubSecSplitDistMethod,
@Semantics.text: true
cast ( dd07t.ddtext as psm_s4c_split_rule_dom_txt ) as PubSecSplitDistMethodText,
_SplitRuleDistMethod,
_Language
}
where
dd07t.domname = 'PSM_S4C_DISTRIBUTION_METHOD'
and dd07t.as4local = 'A'
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