I_OperatingConcern

DDL: I_OPERATINGCONCERN SQL: IFIOPERCONCERN Type: view BASIC

Operating Concern

I_OperatingConcern (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Accounting and Financial Close

I_OperatingConcern is a Basic CDS View (Dimension) that provides data about "Operating Concern" in SAP S/4HANA. It reads from 1 data source (tkeb) and exposes 3 fields with key field OperatingConcern. It has 1 association to related views.

SAP API Hub

StateC1
Line of BusinessAccounting and Financial Close
Application ComponentFI-FIO-GL-IS
CapabilitiesData Source for Data Extraction, Association Target for Defining CDS Entities, Analytical Dimension, Data Source in SQL Select, Data Source for Defining CDS Entities
PackageAccounting and Financial Close for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
tkeb tkeb from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_OperatingConcernText _Text $projection.OperatingConcern = _Text.OperatingConcern

Annotations (14)

NameValueLevelField
ObjectModel.representativeKey OperatingConcern view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Operating Concern view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFIOPERCONCERN view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY OperatingConcern erkrs Operating concern
OperatingConcernName Description of operating concern
_Text _Text

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_OperatingConcern.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: IFIOPERCONCERN

CREATE VIEW I_OperatingConcern AS
SELECT
  erkrs AS OperatingConcern,
  _Text[1:Language = $session.system_language].OperatingConcernName AS OperatingConcernName
FROM tkeb
LEFT OUTER JOIN I_OperatingConcernText AS _Text ON OperatingConcern = _Text.OperatingConcern  -- association [0..*]
;