P_ActyTypeValidCurrent
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)
| Source | Alias | Join Type |
|---|---|---|
| I_CostCenterActivityType | I_CostCenterActivityType | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
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