A_CnsldtnFunctionalAreaT
Combined Functional Area Text
A_CnsldtnFunctionalAreaT is a Basic CDS View that provides data about "Combined Functional Area Text" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnFunctionalAreaT) and exposes 4 fields with key fields Language, FunctionalArea. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CnsldtnFunctionalAreaT | I_CnsldtnFunctionalAreaT | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | A_CnsldtnFunctionalArea | _CnsldtnFunctionalArea | $projection.FunctionalArea = _CnsldtnFunctionalArea.FunctionalArea |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ACSFUNCAREAT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | FunctionalArea | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| EndUserText.label | Combined Functional Area Text | view | |
| OData.entitySet.name | FunctionalAreaText | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | Language | ||
| KEY | FunctionalArea | FunctionalArea | ||
| FunctionalAreaText | ||||
| _CnsldtnFunctionalArea | _CnsldtnFunctionalArea |
@AbapCatalog:{
sqlViewName: 'ACSFUNCAREAT',
compiler.compareFilter: true,
preserveKey: true
}
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel:{
usageType: {
dataClass: #MASTER,
serviceQuality: #C,
sizeCategory: #L },
dataCategory: #TEXT,
representativeKey: 'FunctionalArea'
}
@VDM:{
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_REMOTE_API
}
@EndUserText.label: 'Combined Functional Area Text'
@OData.entitySet.name: 'FunctionalAreaText'
define view A_CnsldtnFunctionalAreaT
as select from I_CnsldtnFunctionalAreaT
association [0..1] to A_CnsldtnFunctionalArea as _CnsldtnFunctionalArea on $projection.FunctionalArea = _CnsldtnFunctionalArea.FunctionalArea
{
@Semantics.language
key Language,
@ObjectModel.foreignKey.association: '_CnsldtnFunctionalArea'
key FunctionalArea,
@Semantics.text: true
cast(FunctionalAreaName as fincs_rfarea_t preserving type) as FunctionalAreaText,
_CnsldtnFunctionalArea
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CNSLDTNFUNCTIONALAREAT"
],
"ASSOCIATED":
[
"A_CNSLDTNFUNCTIONALAREA"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"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