A_FunctionalArea

DDL: A_FUNCTIONALAREA SQL: AFIFUNCAREA Type: view BASIC Package: FINS_FUNCTIONAL_AREA_API

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. Part of development package FINS_FUNCTIONAL_AREA_API.

Data Sources (1)

SourceAliasJoin Type
I_FunctionalArea I_FunctionalArea from

Associations (1)

CardinalityTargetAliasCondition
[0..*] A_FunctionalAreaText _Text $projection.FunctionalArea = _Text.FunctionalArea

Annotations (12)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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
}