A_FunctionalArea
Functional Area
A_FunctionalArea is a Basic CDS View that provides data about "Functional Area" in SAP S/4HANA. It reads from 1 data source (I_FunctionalArea) and exposes 2 fields with key field FunctionalArea. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_FunctionalArea | I_FunctionalArea | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | A_FunctionalAreaText | _Text | $projection.FunctionalArea = _Text.FunctionalArea |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Functional Area | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.sqlViewName | AFIFUNCAREA | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | 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 | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | FunctionalArea | FunctionalArea | ||
| _Text | _Text |
@EndUserText.label: 'Functional Area'
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'AFIFUNCAREA'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #B,
sizeCategory: #S
}
@AbapCatalog.compiler.compareFilter: true
@AccessControl.personalData.blocking: #REQUIRED
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
define view A_FunctionalArea
as select from I_FunctionalArea
association [0..*] to A_FunctionalAreaText as _Text on $projection.FunctionalArea = _Text.FunctionalArea
{
key FunctionalArea,
_Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_FUNCTIONALAREA"
],
"ASSOCIATED":
[
"A_FUNCTIONALAREATEXT"
],
"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