ACE_ACEPSOI_BASIC
basic view for ACEPSOI
ACE_ACEPSOI_BASIC is a CDS View that provides data about "basic view for ACEPSOI" in SAP S/4HANA. It reads from 3 data sources (acac_objects, acepsoi, acesobj) and exposes 17 fields with key fields mandt, comp, bukrs, gjahr, objid. Part of development package ACE_MIG.
Data Sources (3)
| Source | Alias | Join Type |
|---|---|---|
| acac_objects | acac_objects | left_outer |
| acepsoi | acepsoi | from |
| acesobj | acesobj | left_outer |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ACEV_ACEPSOIBSC | 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 | basic view for ACEPSOI | view |
Fields (17)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | mandt | acepsoi | mandt | |
| KEY | comp | acepsoi | comp | |
| KEY | bukrs | acepsoi | bukrs | |
| KEY | gjahr | gjahr | ||
| KEY | objid | acepsoi | objid | |
| KEY | subid | acepsoi | subid | |
| KEY | acrtype | acrtype | ||
| KEY | accrule | accrule | ||
| cumvalcap | cumvalcap | |||
| cumvalaccr | cumvalaccr | |||
| valcap | valcap | |||
| valaccr | valaccr | |||
| valretire | valretire | |||
| currency | currency | |||
| ref_key | acesobj | ref_key | ||
| ref_subkey | acesobj | ref_subkey | ||
| acac_objtype | acac_objects | acac_objtype |
@AbapCatalog.sqlViewName: 'ACEV_ACEPSOIBSC'
@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: 'basic view for ACEPSOI'
define view ACE_ACEPSOI_BASIC
as select from acepsoi
left outer join acesobj on acepsoi.mandt = acesobj.mandt
and acepsoi.comp = acesobj.comp
and acepsoi.bukrs = acesobj.bukrs
and acepsoi.objid = acesobj.objid
and acepsoi.subid = acesobj.subid
left outer join acac_objects on acac_objects.mandt = acesobj.mandt
and acac_objects.bukrs = acesobj.bukrs
and acac_objects.ref_key = acesobj.ref_key
and acac_objects.ref_subkey = acesobj.ref_subkey
{
key acepsoi.mandt,
key acepsoi.comp,
key acepsoi.bukrs,
key gjahr,
key acepsoi.objid,
key acepsoi.subid,
key acrtype,
key accrule,
cumvalcap,
cumvalaccr,
valcap,
valaccr,
valretire,
currency,
acesobj.ref_key,
acesobj.ref_subkey,
acac_objects.acac_objtype
}
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