ACE_ACEPSOH_VIEW
Compatibility view for ACEPSOH
ACE_ACEPSOH_VIEW is a CDS View that provides data about "Compatibility view for ACEPSOH" in SAP S/4HANA. It reads from 1 data source (acesobj) and exposes 13 fields with key fields mandt, comp, bukrs, objid, subid.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| acesobj | acesobj | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ACEV_ACEPSOH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| EndUserText.label | Compatibility view for ACEPSOH | view |
Fields (13)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | mandt | acesobj | mandt | |
| KEY | comp | acesobj | comp | |
| KEY | bukrs | acesobj | bukrs | |
| KEY | objid | acesobj | objid | |
| KEY | subid | acesobj | subid | |
| uname | acesobj | uname | ||
| clientNULLascpudt | ||||
| clientNULLascputm | ||||
| deactdate | acesobj | premtre_fdate | ||
| ref_subkey | acesobj | ref_subkey | ||
| status | acesobj | status | ||
| FIRSTYEAR | ||||
| LASTYEAR |
@AbapCatalog.sqlViewName: 'ACEV_ACEPSOH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.sizeCategory: #XXL
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #C
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@EndUserText.label: 'Compatibility view for ACEPSOH'
define view ACE_ACEPSOH_VIEW
as select from acesobj
// comment out by i337033
// no need to do check for firstyear and lastyear
// left outer join acdoca on acesobj.comp = acdoca.acrobjtype and
// acesobj.ref_key = acdoca.acrobj_id and
// acesobj.ref_subkey = acdoca.acrsobj_id and
// acesobj.bukrs = acdoca.rbukrs
{
key acesobj.mandt,
key acesobj.comp,
key acesobj.bukrs,
key acesobj.objid,
key acesobj.subid,
acesobj.uname,
tstmp_to_dats( acesobj.timestmp,
abap_system_timezone( $session.client,'NULL' ),
$session.client,
'NULL' ) as cpudt,
tstmp_to_tims( acesobj.timestmp,
abap_system_timezone( $session.client,'NULL' ),
$session.client,
'NULL' ) as cputm,
// cast( substring(cast(acesobj.timestmp as char21 ),8,6 ) as ace_createtime ) as CPUTM,
acesobj.premtre_fdate as deactdate,
acesobj.ref_subkey,
acesobj.status,
cast ('' as ace_firstyear ) as FIRSTYEAR,
cast ('' as ace_lastyear ) as LASTYEAR
// min( acdoca.gjahr ) as firstyear,
//
// max( acdoca.gjahr ) as lastyear
// acesobj.firstyear,
// acesobj.lastyear
}group by acesobj.mandt,
acesobj.comp,
acesobj.bukrs,
acesobj.bukrs,
acesobj.objid,
acesobj.subid,
acesobj.uname,
acesobj.timestmp,
acesobj.premtre_fdate,
acesobj.ref_subkey,
acesobj.status
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ACESOBJ"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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