I_CostCenterActivityTypeDetail

DDL: I_COSTCENTERACTIVITYTYPEDETAIL SQL: IFICCACTTYPD Type: view BASIC Package: FINS_FIS_FICO

Cost Center Activity Type Detail

I_CostCenterActivityTypeDetail is a Basic CDS View (Dimension) that provides data about "Cost Center Activity Type Detail" in SAP S/4HANA. It reads from 1 data source (csla) and exposes 13 fields with key fields ControllingArea, CostCtrActivityType, ValidityEndDate. It has 1 association to related views. Part of development package FINS_FIS_FICO.

Data Sources (1)

SourceAliasJoin Type
csla csla from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CostCenterActivityTypeText _Text $projection.ControllingArea = _Text.ControllingArea and $projection.CostCtrActivityType = _Text.CostCtrActivityType and $projection.ValidityEndDate = _Text.ValidityEndDate association[1] to I_ControllingArea as _ControllingArea on $projection.ControllingArea = _ControllingArea.ControllingArea

Annotations (11)

NameValueLevelField
EndUserText.label Cost Center Activity Type Detail view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFICCACTTYPD view
ObjectModel.representativeKey CostCtrActivityType view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
Metadata.allowExtensions true view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY ControllingArea Org. Value
KEY CostCtrActivityType lstar Activity Type
KEY ValidityEndDate datbi Validity period
ValidityStartDate datab Validity period
CostCtrActivityTypeQtyUnit leinh Unit
CostCtrActivityTypeCategory latyp ATyp category
AllocationCostElement vksta Alloc. CElem
CostCtrActivityTypeOutpQtyUnit auseh Output Unit
CreationDate ersda Entry Date
EnteredByUser usnam User Name
CostOriginGroup hrkft Origin group order
_Text _Text
_ControllingArea _ControllingArea

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_CostCenterActivityTypeDetail.
-- 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: IFICCACTTYPD

CREATE VIEW I_CostCenterActivityTypeDetail AS
SELECT
  cast( kokrs as fis_kokrs preserving type ) AS ControllingArea,
  lstar AS CostCtrActivityType,
  datbi AS ValidityEndDate,
  datab AS ValidityStartDate,
  leinh AS CostCtrActivityTypeQtyUnit,
  latyp AS CostCtrActivityTypeCategory,
  vksta AS AllocationCostElement,
  auseh AS CostCtrActivityTypeOutpQtyUnit,
  ersda AS CreationDate,
  usnam AS EnteredByUser,
  hrkft AS CostOriginGroup
FROM csla
LEFT OUTER JOIN I_CostCenterActivityTypeText AS _Text ON ControllingArea = _Text.ControllingArea AND CostCtrActivityType = _Text.CostCtrActivityType AND ValidityEndDate = _Text.ValidityEndDate association[1] to I_ControllingArea as _ControllingArea on ControllingArea = _ControllingArea.ControllingArea  -- association [0..*]
;