A_CostCenterActivityTypeText

DDL: A_COSTCENTERACTIVITYTYPETEXT SQL: AFICCACTTYPT Type: view BASIC

Activity Type Text

A_CostCenterActivityTypeText is a Basic CDS View that provides data about "Activity Type Text" in SAP S/4HANA. It reads from 1 data source (I_CostCenterActivityTypeText) and exposes 7 fields with key fields ValidityEndDate, ControllingArea, CostCtrActivityType, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_CostCenterActivityTypeText I_CostCenterActivityTypeText from

Associations (1)

CardinalityTargetAliasCondition
[1..1] A_CostCenterActivityType _CostCenterActivityType $projection.ControllingArea = _CostCenterActivityType.ControllingArea and $projection.CostCtrActivityType = _CostCenterActivityType.CostCtrActivityType and $projection.ValidityEndDate = _CostCenterActivityType.ValidityEndDate

Annotations (11)

NameValueLevelField
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName AFICCACTTYPT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Activity Type Text view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ValidityEndDate ValidityEndDate ValidTo
KEY ControllingArea ControllingArea Controlling Area
KEY CostCtrActivityType CostCtrActivityType Activity Type
KEY Language Language Report Text Language
CostCtrActivityTypeName CostCtrActivityTypeName
CostCtrActivityTypeDesc CostCtrActivityTypeDesc
_CostCenterActivityType _CostCenterActivityType

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 A_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: AFICCACTTYPT

CREATE VIEW A_CostCenterActivityTypeText AS
SELECT
  ValidityEndDate,
  ControllingArea,
  CostCtrActivityType,
  Language,
  CostCtrActivityTypeName,
  CostCtrActivityTypeDesc
FROM I_CostCenterActivityTypeText
LEFT OUTER JOIN A_CostCenterActivityType AS _CostCenterActivityType ON ControllingArea = _CostCenterActivityType.ControllingArea AND CostCtrActivityType = _CostCenterActivityType.CostCtrActivityType AND ValidityEndDate = _CostCenterActivityType.ValidityEndDate  -- association [1..1]
;