I_CostCenterActivityTypeText

DDL: I_COSTCENTERACTIVITYTYPETEXT SQL: IFICCACTTYPT Type: view BASIC

Cost Center Activity Type - Text

I_CostCenterActivityTypeText (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_CostCenterActivityTypeText is a Basic CDS View that provides data about "Cost Center Activity Type - Text" in SAP S/4HANA. It reads from 1 data source (cslt) and exposes 11 fields with key fields ValidityEndDate, ControllingArea, CostCtrActivityType, Language. It has 2 associations to related views.

SAP API Hub

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

Documentation

Data Sources (1)

SourceAliasJoin Type
cslt cslt from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_ControllingArea _ControllingAreaText $projection.ControllingArea = _ControllingAreaText.ControllingArea
[0..1] I_Language _Language $projection.Language = _Language.Language association[1] to I_ControllingArea as _ControllingArea on $projection.ControllingArea = _ControllingArea.ControllingArea

Annotations (16)

NameValueLevelField
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey CostCtrActivityType view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
EndUserText.label Cost Center Activity Type - Text view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFICCACTTYPT view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
Consumption.filter.businessDate.at true view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY ValidityEndDate cslt datbi Validity period
KEY ControllingArea Controlling Area
KEY CostCtrActivityType cslt lstar Activity Type
KEY Language spras Off. Language
CostCtrActivityTypeName Cost Center Activity Type Name
CostCtrActivityTypeDesc Cost Center Activity Type Description
ValidityStartDate datab Validity period
CostCtrActyTypeTxtSearchTerm mctxt Search Term for Matchcode Use
_Language _Language
_ControllingArea _ControllingArea
_ControllingAreaText _ControllingAreaText

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_CostCenterActivityTypeText.
-- 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: IFICCACTTYPT

CREATE VIEW I_CostCenterActivityTypeText AS
SELECT
  cslt.datbi AS ValidityEndDate,
  cast( cslt.kokrs as fis_kokrs preserving type ) AS ControllingArea,
  cslt.lstar AS CostCtrActivityType,
  spras AS Language,
  cast( ktext as fis_costctractivitytypename preserving type ) AS CostCtrActivityTypeName,
  cast( ltext as fis_costctractivitytypedesc preserving type ) AS CostCtrActivityTypeDesc,
  datab AS ValidityStartDate,
  mctxt AS CostCtrActyTypeTxtSearchTerm
FROM cslt
LEFT OUTER JOIN I_ControllingArea AS _ControllingAreaText ON ControllingArea = _ControllingAreaText.ControllingArea  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language association[1] to I_ControllingArea as _ControllingArea on ControllingArea = _ControllingArea.ControllingArea  -- association [0..1]
;