I_AllocAssmtDistrLongText
Assessment Distribution Long Text
I_AllocAssmtDistrLongText is a Basic CDS View that provides data about "Assessment Distribution Long Text" in SAP S/4HANA. It reads from 1 data source (t811l) and exposes 6 fields with key fields LanguageCode, AllocationType, AllocationCycle, AllocationCycleStartDate, AllocationCycleSegment.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t811l | t811l | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ALLOCLONGTXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| EndUserText.label | Assessment Distribution Long Text | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| VDM.viewType | #BASIC | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | LanguageCode | langu | ||
| KEY | AllocationType | |||
| KEY | AllocationCycle | cycle | ||
| KEY | AllocationCycleStartDate | sdate | ||
| KEY | AllocationCycleSegment | seqnr | ||
| AllocationCycleNameText |
@AbapCatalog.sqlViewName: 'ALLOCLONGTXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking:#NOT_REQUIRED
@EndUserText.label: 'Assessment Distribution Long Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@VDM.viewType: #BASIC
define view I_AllocAssmtDistrLongText as
select from t811l
{
key langu as LanguageCode,
//key tab as DatabaseTable,
key cast(tab as fco_allocation_type) as AllocationType,
key cycle as AllocationCycle,
key sdate as AllocationCycleStartDate,
key seqnr as AllocationCycleSegment,
cast(txt as fco_alloc_cycle_name) as AllocationCycleNameText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T811L"
],
"ASSOCIATED":
[],
"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