V_TACECOMP_SIMULATION
Components with simulation enabled
V_TACECOMP_SIMULATION is a CDS View that provides data about "Components with simulation enabled" in SAP S/4HANA. It reads from 2 data sources (tacecompc, tacecompt) and exposes 3 fields. Part of development package ACE_S4_COMMON.
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | V_TACECOMP_SIM | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| EndUserText.label | Components with simulation enabled | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
@AbapCatalog.sqlViewName: 'V_TACECOMP_SIM'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #C
@EndUserText.label: 'Components with simulation enabled'
@ClientHandling.algorithm: #SESSION_VARIABLE
define view V_TACECOMP_SIMULATION
as select distinct from tacecomp
left outer join tacecompc on(
tacecomp.mandt = tacecompc.mandt
and tacecomp.comp = tacecompc.comp
)
left outer join tacecompt on(
tacecompt.mandt = tacecomp.mandt
and tacecompt.comp = tacecomp.comp
and tacecompt.spras = $session.system_language
)
{
tacecomp.mandt,
tacecomp.comp,
tacecompt.txt50
}
where
(
tacecomp.simulation_enabled = 'X'
and(
tacecompc.inactive = ' '
or tacecompc.inactive is null
)
)
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