P_ActyTypeValidCurrent

DDL: P_ACTYTYPEVALIDCURRENT SQL: PACTYTCURR Type: view BASIC Package: ODATA_WHERE_USED_ACTIVITY_TYPE

Cost Center Activity Types Valid Today

P_ActyTypeValidCurrent is a Basic CDS View that provides data about "Cost Center Activity Types Valid Today" in SAP S/4HANA. It reads from 1 data source (I_CostCenterActivityType) and exposes 3 fields with key fields ControllingArea, CostCtrActivityType. Part of development package ODATA_WHERE_USED_ACTIVITY_TYPE.

Data Sources (1)

SourceAliasJoin Type
I_CostCenterActivityType I_CostCenterActivityType from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName PACTYTCURR view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.private true view
VDM.viewType #BASIC view
EndUserText.label Cost Center Activity Types Valid Today view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ControllingArea ControllingArea
KEY CostCtrActivityType CostCtrActivityType
ValidityEndDate ValidityEndDate
@AbapCatalog.sqlViewName: 'PACTYTCURR'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.private: true
@VDM.viewType: #BASIC
--@EndUserText.label: 'Cost Center Activity Types Valid Today'
define view P_ActyTypeValidCurrent 
as select from I_CostCenterActivityType {
    //I_CostCenterActivityType 

    key ControllingArea, 
    key CostCtrActivityType, 
    ValidityEndDate 
}

where 
     ValidityStartDate <= $session.system_date and
     ValidityEndDate   >= $session.system_date