A_CostCenterActivityType
Activity Type
A_CostCenterActivityType is a Basic CDS View that provides data about "Activity Type" in SAP S/4HANA. It reads from 1 data source (I_CostCenterActivityType) and exposes 22 fields with key fields ControllingArea, CostCtrActivityType, ValidityEndDate. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CostCenterActivityType | I_CostCenterActivityType | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | A_CostCenterActivityTypeText | _Text | $projection.ControllingArea = _Text.ControllingArea and $projection.CostCtrActivityType = _Text.CostCtrActivityType and $projection.ValidityEndDate = _Text.ValidityEndDate |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | AFICCACTTYP | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Activity Type | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view |
Fields (22)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ControllingArea | ControllingArea | ||
| KEY | CostCtrActivityType | CostCtrActivityType | ||
| KEY | ValidityEndDate | ValidityEndDate | ||
| ValidityStartDate | ValidityStartDate | |||
| CostCtrActivityTypeQtyUnit | CostCtrActivityTypeQtyUnit | |||
| CostCtrActivityTypeCategory | CostCtrActivityTypeCategory | |||
| AllocationCostElement | AllocationCostElement | |||
| CostCtrActivityTypeOutpQtyUnit | CostCtrActivityTypeOutpQtyUnit | |||
| CreationDate | CreationDate | |||
| EnteredByUser | EnteredByUser | |||
| CostOriginGroup | CostOriginGroup | |||
| ActlPostgCostCenterActyTypeCat | ActlPostgCostCenterActyTypeCat | |||
| OutputQuantityFactor | OutputQuantityFactor | |||
| ActivityTypeIsBlocked | ActivityTypeIsBlocked | |||
| FixedCostIsPredistributed | FixedCostIsPredistributed | |||
| PriceAllocationMethod | PriceAllocationMethod | |||
| PeriodPriceIsAverage | PeriodPriceIsAverage | |||
| ActualPriceAllocationMethod | ActualPriceAllocationMethod | |||
| ActualQuantityIsSetManually | ActualQuantityIsSetManually | |||
| PlanQuantityIsSetManually | PlanQuantityIsSetManually | |||
| CostCtrActivityTypeValidCat | CostCtrActivityTypeValidCat | |||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'AFICCACTTYP'
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Activity Type'
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {
dataClass: #MASTER,
serviceQuality: #B,
sizeCategory: #M
}
@Metadata.ignorePropagatedAnnotations: true
@AbapCatalog.compiler.compareFilter: true
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
define view A_CostCenterActivityType
as select from I_CostCenterActivityType
association [0..*] to A_CostCenterActivityTypeText as _Text on $projection.ControllingArea = _Text.ControllingArea
and $projection.CostCtrActivityType = _Text.CostCtrActivityType
and $projection.ValidityEndDate = _Text.ValidityEndDate
{
key ControllingArea,
key CostCtrActivityType,
key ValidityEndDate,
ValidityStartDate,
CostCtrActivityTypeQtyUnit,
CostCtrActivityTypeCategory,
AllocationCostElement,
CostCtrActivityTypeOutpQtyUnit,
CreationDate,
EnteredByUser,
CostOriginGroup,
ActlPostgCostCenterActyTypeCat,
OutputQuantityFactor,
ActivityTypeIsBlocked,
FixedCostIsPredistributed,
PriceAllocationMethod,
PeriodPriceIsAverage,
ActualPriceAllocationMethod,
ActualQuantityIsSetManually,
PlanQuantityIsSetManually,
CostCtrActivityTypeValidCat,
_Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_COSTCENTERACTIVITYTYPE"
],
"ASSOCIATED":
[
"A_COSTCENTERACTIVITYTYPETEXT"
],
"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