A_CostCenterActivityTypeText
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)
| Source | Alias | Join Type |
|---|---|---|
| I_CostCenterActivityTypeText | I_CostCenterActivityTypeText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | A_CostCenterActivityType | _CostCenterActivityType | $projection.ControllingArea = _CostCenterActivityType.ControllingArea and $projection.CostCtrActivityType = _CostCenterActivityType.CostCtrActivityType and $projection.ValidityEndDate = _CostCenterActivityType.ValidityEndDate |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ValidityEndDate | ValidityEndDate | ||
| KEY | ControllingArea | ControllingArea | ||
| KEY | CostCtrActivityType | CostCtrActivityType | ||
| KEY | Language | Language | ||
| CostCtrActivityTypeName | CostCtrActivityTypeName | |||
| CostCtrActivityTypeDesc | CostCtrActivityTypeDesc | |||
| _CostCenterActivityType | _CostCenterActivityType |
@ObjectModel.usageType: {
dataClass: #MASTER,
serviceQuality: #B,
sizeCategory: #M
}
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'AFICCACTTYPT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Activity Type Text'
@Metadata.ignorePropagatedAnnotations: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
define view A_CostCenterActivityTypeText
as select from I_CostCenterActivityTypeText
association [1..1] to A_CostCenterActivityType as _CostCenterActivityType on $projection.ControllingArea = _CostCenterActivityType.ControllingArea
and $projection.CostCtrActivityType = _CostCenterActivityType.CostCtrActivityType
and $projection.ValidityEndDate = _CostCenterActivityType.ValidityEndDate
{
key ValidityEndDate,
key ControllingArea,
key CostCtrActivityType,
key Language,
CostCtrActivityTypeName,
CostCtrActivityTypeDesc,
/* Associations */
_CostCenterActivityType
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_COSTCENTERACTIVITYTYPETEXT"
],
"ASSOCIATED":
[
"A_COSTCENTERACTIVITYTYPE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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