I_CycleRunGroupText
Group - Text
I_CycleRunGroupText is a Basic CDS View that provides data about "Group - Text" in SAP S/4HANA. It reads from 1 data source (t811pt) and exposes 8 fields with key fields Language, AllocationType, Ledger, AllocationCycleRunGroup, AllocationPostingType. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t811pt | t811pt | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IALLOCGRPTEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Group - Text | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | langu | ||
| KEY | AllocationType | |||
| KEY | Ledger | |||
| KEY | AllocationCycleRunGroup | proc_group | ||
| KEY | AllocationPostingType | |||
| KEY | AllocationActualPlanVariant | |||
| AllocationCycleRunGroupText | ||||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IALLOCGRPTEXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Group - Text'
@ObjectModel.usageType:{
serviceQuality: #C,
sizeCategory: #M,
dataClass: #MIXED
}
@ObjectModel.dataCategory:#TEXT
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_CycleRunGroupText
as select from t811pt
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Semantics.language:true
key langu as Language,
key cast(tab as fco_allocation_context) as AllocationType,
key cast(substring(org_unit, 1, 2) as fis_rldnr) as Ledger,
@ObjectModel.text.element: ['AllocationCycleRunGroupText']
key proc_group as AllocationCycleRunGroup,
key cast(alart as fco_alloc_posting_type) as AllocationPostingType,
key cast(ipknz as fco_alloc_ipknz ) as AllocationActualPlanVariant,
@Semantics.text:true
cast(txt as fco_alloc_cycle_run_grp_txt) as AllocationCycleRunGroupText,
_Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T811PT"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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