I_AccrEngineAccrSubobjLifeCyc
Accrual Subobject Life Cycle
I_AccrEngineAccrSubobjLifeCyc is a Basic CDS View that provides data about "Accrual Subobject Life Cycle" in SAP S/4HANA. It reads from 1 data source (acesobj_item) and exposes 7 fields with key fields AccrualEngineAccrualObjectType, AccrualObjectLogicalSystem, CompanyCode, AccrualObject, AccrualSubobject.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| acesobj_item | acesobj_item | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IACESOLIFECYCLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Accrual Subobject Life Cycle | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.preserveKey | true | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AccrualEngineAccrualObjectType | comp | ||
| KEY | AccrualObjectLogicalSystem | logsys | ||
| KEY | CompanyCode | bukrs | ||
| KEY | AccrualObject | ref_key | ||
| KEY | AccrualSubobject | ref_subkey | ||
| AccrSubobjHdrStartOfLifeDate | ||||
| AccrSubobjHdrEndOfLifeDate |
@AbapCatalog.sqlViewName: 'IACESOLIFECYCLE'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Accrual Subobject Life Cycle'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {
serviceQuality: #C,
sizeCategory: #M,
dataClass: #MASTER
}
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #BASIC
@AbapCatalog.preserveKey:true
define view I_AccrEngineAccrSubobjLifeCyc
as select from acesobj_item
{
key comp as AccrualEngineAccrualObjectType,
key logsys as AccrualObjectLogicalSystem,
key bukrs as CompanyCode,
key ref_key as AccrualObject,
key ref_subkey as AccrualSubobject,
cast( min(life_start_date ) as ace_life_start_date preserving type ) as AccrSubobjHdrStartOfLifeDate,
cast( max(life_end_date ) as ace_life_end_date preserving type ) as AccrSubobjHdrEndOfLifeDate
}
//where
// xobsolete = ''
group by
comp,
logsys,
bukrs,
ref_key,
ref_subkey
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