P_ActivityTypeChangeLogVH

DDL: P_ACTIVITYTYPECHANGELOGVH Type: view_entity CONSUMPTION

Activity Type Change Log Value Help

P_ActivityTypeChangeLogVH is a Consumption CDS View that provides data about "Activity Type Change Log Value Help" in SAP S/4HANA. It reads from 2 data sources (I_CostCenterActivityType, I_CostCenterActivityType) and exposes 8 fields with key fields ControllingArea, CostCtrActivityType, ValidityEndDate, ValidityStartDate, CostCtrActivityType.

Data Sources (2)

SourceAliasJoin Type
I_CostCenterActivityType I_CostCenterActivityType from
I_CostCenterActivityType I_CostCenterActivityType union

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Activity Type Change Log Value Help view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.private true view
VDM.viewType #CONSUMPTION view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY ControllingArea ChangeDocumentControllingArea
KEY CostCtrActivityType ChangeDocumentActivityType Activity Type
KEY ValidityEndDate ChangeDocumentValidityEndDate ValidTo
KEY ValidityStartDate ChangeDocValidityStartDate Validity Start Date
KEY CostCtrActivityType CostCtrActivityType Activity Type
KEY ValidityEndDate ValidityEndDate ValidTo
KEY ValidityStartDate ValidityStartDate Validity Start Date
CostCtrActivityTypeName

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 P_ActivityTypeChangeLogVH.
-- 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.

CREATE VIEW P_ActivityTypeChangeLogVH AS
SELECT
  ChangeDocumentControllingArea AS ControllingArea,
  ChangeDocumentActivityType AS CostCtrActivityType,
  ChangeDocumentValidityEndDate AS ValidityEndDate,
  ChangeDocValidityStartDate AS ValidityStartDate,
  cast( _Text[ 1: Language = $session.system_language ].CostCtrActivityTypeName as fis_costctractivitytypename preserving type ) AS CostCtrActivityTypeName
FROM I_CostCenterActivityType
-- UNION with additional select branch(es): I_CostCenterActivityType
;