A_FunctionalAreaText
Functional Area Text
A_FunctionalAreaText is a Basic CDS View that provides data about "Functional Area Text" in SAP S/4HANA. It reads from 1 data source (I_FunctionalAreaText) and exposes 4 fields with key fields Language, FunctionalArea. It has 1 association to related views. Part of development package FINS_FUNCTIONAL_AREA_API.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_FunctionalAreaText | I_FunctionalAreaText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | A_FunctionalArea | _FunctionalArea | $projection.FunctionalArea = _FunctionalArea.FunctionalArea |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Functional Area Text | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.sqlViewName | AFIFUNCAREAT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | Language | ||
| KEY | FunctionalArea | FunctionalArea | ||
| FunctionalAreaName | FunctionalAreaName | |||
| _FunctionalArea | _FunctionalArea |
@EndUserText.label: 'Functional Area Text'
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'AFIFUNCAREAT'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #B,
sizeCategory: #S
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.compiler.compareFilter: true
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
define view A_FunctionalAreaText
as select from I_FunctionalAreaText
association [1..1] to A_FunctionalArea as _FunctionalArea on $projection.FunctionalArea = _FunctionalArea.FunctionalArea
{
key Language,
key FunctionalArea,
@Semantics.text
FunctionalAreaName,
_FunctionalArea
};
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