I_AllocationFieldGroupText
Allocation Field Group Text
I_AllocationFieldGroupText is a Basic CDS View that provides data about "Allocation Field Group Text" in SAP S/4HANA. It reads from 1 data source (t811m) and exposes 5 fields with key fields Language, AllocationType, AllocationFieldGroup. Part of development package ODATA_MANAGE_ALLOCATION.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t811m | t811m | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ALLOCFLGRP_T | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Allocation Field Group Text | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | 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 | Language | langu | ||
| KEY | AllocationType | tab | ||
| KEY | AllocationFieldGroup | fname | ||
| AllocFieldGroupRowText | dtext1 | |||
| AllocFieldGroupColumnText | dtext2 |
@AbapCatalog.sqlViewName: 'ALLOCFLGRP_T'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Allocation Field Group Text'
@AccessControl.personalData.blocking:#NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@VDM.viewType: #BASIC
define view I_AllocationFieldGroupText as
select from t811m
{
//t811m
key langu as Language,
key tab as AllocationType,
key fname as AllocationFieldGroup,
@Semantics.text: true
dtext1 as AllocFieldGroupRowText,
dtext2 as AllocFieldGroupColumnText
}
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