A_CostCenterActivityType

DDL: A_COSTCENTERACTIVITYTYPE SQL: AFICCACTTYP Type: view BASIC

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)

SourceAliasJoin Type
I_CostCenterActivityType I_CostCenterActivityType from

Associations (1)

CardinalityTargetAliasCondition
[0..*] A_CostCenterActivityTypeText _Text $projection.ControllingArea = _Text.ControllingArea and $projection.CostCtrActivityType = _Text.CostCtrActivityType and $projection.ValidityEndDate = _Text.ValidityEndDate

Annotations (11)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/