A_CnsldtnOfInvestmentsActyT
Investment Activity Type Text
A_CnsldtnOfInvestmentsActyT is a Basic CDS View that provides data about "Investment Activity Type Text" in SAP S/4HANA. It reads from 1 data source (P_CnsldtnDomainText) and exposes 4 fields with key fields Language, InvestmentActivityType. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_CnsldtnDomainText | P_CnsldtnDomainText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | A_CnsldtnOfInvestmentsActivity | _CnsldtnOfInvestmentsActivity | $projection.InvestmentActivityType = _CnsldtnOfInvestmentsActivity.InvestmentActivityType |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ACSINVSTACTVTT | 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 | #META | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.representativeKey | InvestmentActivityType | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| EndUserText.label | Investment Activity Type Text | view | |
| OData.entitySet.name | CnsldtnOfInvestmentsActyText | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | Language | ||
| KEY | InvestmentActivityType | |||
| InvestmentActivityTypeText | Investment Activity Description | |||
| _CnsldtnOfInvestmentsActivity | _CnsldtnOfInvestmentsActivity |
@AbapCatalog:{
sqlViewName: 'ACSINVSTACTVTT',
compiler.compareFilter: true,
preserveKey: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel:{
usageType: {
dataClass: #META,
serviceQuality: #A,
sizeCategory: #S},
representativeKey: 'InvestmentActivityType',
dataCategory: #TEXT
}
@VDM:{
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_REMOTE_API
}
@EndUserText.label: 'Investment Activity Type Text'
@OData.entitySet.name: 'CnsldtnOfInvestmentsActyText'
// This view is obsolete and replaced by A_CnsldtnInvmtActyTypeT
define view A_CnsldtnOfInvestmentsActyT
as select from P_CnsldtnDomainText(P_DomainName : 'FC_COIAC') as _DomainText
association [0..1] to A_CnsldtnOfInvestmentsActivity as _CnsldtnOfInvestmentsActivity on $projection.InvestmentActivityType = _CnsldtnOfInvestmentsActivity.InvestmentActivityType
{
@Semantics.language: true
key Language,
@ObjectModel.foreignKey.association: '_CnsldtnOfInvestmentsActivity'
key cast( left( _DomainText.DomainValue, 2 ) as fincs_coiac preserving type ) as InvestmentActivityType,
@Semantics.text: true
@EndUserText.label: 'Investment Activity Description'
@EndUserText.quickInfo: 'Cnsldtn of Investments Activity Description'
cast( _DomainText.DomainValueText as fincs_coiac_text preserving type ) as InvestmentActivityTypeText,
_CnsldtnOfInvestmentsActivity
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA