A_CnsldtnOfInvestmentsActivity

DDL: A_CNSLDTNOFINVESTMENTSACTIVITY SQL: ACSINVSTACTVT Type: view BASIC

Consolidation of Investments Activity

A_CnsldtnOfInvestmentsActivity is a Basic CDS View that provides data about "Consolidation of Investments Activity" in SAP S/4HANA. It reads from 1 data source (P_CnsldtnDomain) and exposes 2 fields with key field InvestmentActivityType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
P_CnsldtnDomain P_CnsldtnDomain from

Associations (1)

CardinalityTargetAliasCondition
[0..*] A_CnsldtnOfInvestmentsActyT _CnsldtnOfInvestmentsActyT $projection.InvestmentActivityType = _CnsldtnOfInvestmentsActyT.InvestmentActivityType

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ACSINVSTACTVT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey InvestmentActivityType view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Consolidation of Investments Activity view
OData.entitySet.name CnsldtnOfInvestmentsActivity view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY InvestmentActivityType
_CnsldtnOfInvestmentsActyT _CnsldtnOfInvestmentsActyT

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_CnsldtnOfInvestmentsActivity.
-- 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: ACSINVSTACTVT

CREATE VIEW A_CnsldtnOfInvestmentsActivity AS
SELECT
  cast( left( _Domain.DomainValue, 2 ) as fincs_coiac preserving type ) AS InvestmentActivityType
FROM P_CnsldtnDomain
LEFT OUTER JOIN A_CnsldtnOfInvestmentsActyT AS _CnsldtnOfInvestmentsActyT ON InvestmentActivityType = _CnsldtnOfInvestmentsActyT.InvestmentActivityType  -- association [0..*]
;