V_TACECOMP_SIMULATION
Components with simulation enabled
V_TACECOMP_SIMULATION is a CDS View in S/4HANA. Components with simulation enabled. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| V_TACE001_SIMULATION | view | inner | Company Code with simulation enabled |
@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
)
)
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TACECOMP",
"TACECOMPC",
"TACECOMPT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/