A_ControllingArea

DDL: A_CONTROLLINGAREA SQL: AFICONTAREA Type: view BASIC

Controlling Area

A_ControllingArea is a Basic CDS View that provides data about "Controlling Area" in SAP S/4HANA. It reads from 1 data source (I_ControllingArea) and exposes 10 fields with key field ControllingArea.

Data Sources (1)

SourceAliasJoin Type
I_ControllingArea I_ControllingArea from

Annotations (12)

NameValueLevelField
EndUserText.label Controlling Area view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName AFICONTAREA view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey ControllingArea view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.compiler.compareFilter true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY ControllingArea ControllingArea
FiscalYearVariant FiscalYearVariant
ControllingAreaName ControllingAreaName
ControllingAreaCurrency ControllingAreaCurrency
ChartOfAccounts ChartOfAccounts
CostCenterStandardHierarchy CostCenterStandardHierarchy
ProfitCenterStandardHierarchy ProfitCenterStandardHierarchy
FinancialManagementArea FinancialManagementArea
ControllingAreaCurrencyRole ControllingAreaCurrencyRole
ProfitCenterAccountingCurrency ProfitCenterAccountingCurrency
@EndUserText.label: 'Controlling Area'
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'AFICONTAREA'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'ControllingArea'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {
  dataClass: #CUSTOMIZING,
  serviceQuality: #B,
  sizeCategory: #S
}
// A-view annotations

@Metadata.ignorePropagatedAnnotations:true
@AbapCatalog.compiler.compareFilter: true
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API

define view A_ControllingArea
  as select from I_ControllingArea

{
      //A_ControllingArea

  key ControllingArea,
      FiscalYearVariant,
      ControllingAreaName,
      ControllingAreaCurrency,
      ChartOfAccounts,
      CostCenterStandardHierarchy,
      ProfitCenterStandardHierarchy,
      FinancialManagementArea,
      ControllingAreaCurrencyRole,
      ProfitCenterAccountingCurrency
}