I_OperatingConcern

DDL: I_OPERATINGCONCERN SQL: IFIOPERCONCERN Type: view BASIC Package: FINS_FIS_FICO

Operating Concern

I_OperatingConcern (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Public 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. It is exposed through 2 OData services (ASQL_F2964, ASQL_F3417). Part of development package FINS_FIS_FICO.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessAccounting and Financial Close
Application ComponentCO-PA-2CL
CapabilitiesData Source for Data Extraction,Analytical Dimension,Association Target for Defining CDS Entities,Data Source in SQL Select,Data Source for Defining CDS Entities
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageAccounting and Financial Close for SAP S/4HANA Cloud Public 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

OData Services (2)

ServiceBindingVersionContractRelease
ASQL_F2964 ASQL_F2964 C2 NOT_RELEASED
ASQL_F3417 ASQL_F3417 C2 NOT_RELEASED

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..*]
;