C_ActivityTypeChangeLogVH

DDL: C_ACTIVITYTYPECHANGELOGVH SQL: CATCHNGLOGVH Type: view CONSUMPTION Package: ODATA_ACTIVITY_TYPE_CHNGLOG

Activity Type Change Log Activity Type Value Help

C_ActivityTypeChangeLogVH is a Consumption CDS View that provides data about "Activity Type Change Log Activity Type Value Help" in SAP S/4HANA. It reads from 1 data source (P_ActivityTypeChangeLogVH) and exposes 5 fields with key fields ControllingArea, CostCtrActivityType, ValidityEndDate, ValidityStartDate. It is exposed through 1 OData service (ASQL_F3866). Part of development package ODATA_ACTIVITY_TYPE_CHNGLOG.

Data Sources (1)

SourceAliasJoin Type
P_ActivityTypeChangeLogVH P_ActivityTypeChangeLogVH from

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName CATCHNGLOGVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Consumption.ranked true view
EndUserText.label Activity Type Change Log Activity Type Value Help view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey CostCtrActivityType view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
Search.searchable false view
VDM.viewType #CONSUMPTION view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F3866 ASQL_F3866 C2 NOT_RELEASED

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ControllingArea ControllingArea Controlling Area
KEY CostCtrActivityType CostCtrActivityType Activity Type
KEY ValidityEndDate ValidityEndDate ValidTo
KEY ValidityStartDate ValidityStartDate Validity Start Date
CostCtrActivityTypeName 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 C_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.
-- SQL view name: CATCHNGLOGVH

CREATE VIEW C_ActivityTypeChangeLogVH AS
SELECT
  ControllingArea,
  CostCtrActivityType,
  ValidityEndDate,
  ValidityStartDate,
  CostCtrActivityTypeName
FROM P_ActivityTypeChangeLogVH
;