FAC_CDS_UH_CCACTIVITYTYPE

DDL: FAC_CDS_UH_CCACTIVITYTYPE SQL: FACV_UH_AT Type: view

Cost Center Activity Type Master Data

FAC_CDS_UH_CCACTIVITYTYPE is a CDS View that provides data about "Cost Center Activity Type Master Data" in SAP S/4HANA. It reads from 1 data source (I_CostCenterActivityType) and exposes 6 fields with key fields ControllingArea, CostCtrActivityType, ValidityEndDate.

Data Sources (1)

SourceAliasJoin Type
I_CostCenterActivityType I_CostCenterActivityType from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName FACV_UH_AT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Cost Center Activity Type Master Data view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ControllingArea ControllingArea Controlling Area
KEY CostCtrActivityType CostCtrActivityType Activity Type
KEY ValidityEndDate ValidityEndDate ValidTo
ValidityStartDate ValidityStartDate Validity Start Date
CostCtrActivityTypeName
COSTCTRACTIVITYTYPENAMEUPPER

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 FAC_CDS_UH_CCACTIVITYTYPE.
-- 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: FACV_UH_AT

CREATE VIEW FAC_CDS_UH_CCACTIVITYTYPE AS
SELECT
  ControllingArea,
  CostCtrActivityType,
  ValidityEndDate,
  ValidityStartDate,
  _Text[1:Language = $session.system_language and ValidityEndDate = ValidityEndDate and ValidityStartDate = ValidityStartDate].CostCtrActivityTypeName AS CostCtrActivityTypeName,
  cast(upper(_Text[1:Language = $session.system_language and ValidityEndDate = ValidityEndDate and ValidityStartDate = ValidityStartDate].CostCtrActivityTypeName)as ktext) AS COSTCTRACTIVITYTYPENAMEUPPER
FROM I_CostCenterActivityType
;