I_AccrEngineSubobjLifeCycStsT
Accrual Subobject Life Cycle Status Text
I_AccrEngineSubobjLifeCycStsT is a Basic CDS View that provides data about "Accrual Subobject Life Cycle Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields AccrSubobjectLifeCycleStatus, Language. It has 1 association to related views. It is exposed through 2 OData services (UI_ACCRUALS_MANAGE, UI_PURCHASEORDERACCRS_DISPLAY). Part of development package ACE_S4_COMMON.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IACESOLIFECYCSTT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Accrual Subobject Life Cycle Status Text | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | AccrSubobjectLifeCycleStatus | view | |
| ObjectModel.dataCategory | #TEXT | view |
OData Services (2)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_ACCRUALS_MANAGE | UI_ACCRUALS_MANAGE | V2 | C1 | NOT_RELEASED |
| UI_PURCHASEORDERACCRS_DISPLAY | UI_PURCHASEORDERACCRS_DSP | V2 | C1 | NOT_RELEASED |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AccrSubobjectLifeCycleStatus | |||
| KEY | Language | ddlanguage | ||
| AccrSubobjLifeCycleStatusName | ||||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IACESOLIFECYCSTT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Accrual Subobject Life Cycle Status Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'AccrSubobjectLifeCycleStatus'
//@Search.searchable: true
@ObjectModel.dataCategory: #TEXT
define view I_AccrEngineSubobjLifeCycStsT
as select from dd07t
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key cast ( substring( domvalue_l, 1, 1 ) as ace_subobject_lifecycle_status preserving type ) as AccrSubobjectLifeCycleStatus,
@Semantics.language: true
key ddlanguage as Language,
@Semantics.text: true
cast ( ddtext as ace_subobject_lifecycle_text preserving type ) as AccrSubobjLifeCycleStatusName,
_Language
}
where
domname = 'ACE_SUBOBJECT_LIFECYCLE_STATUS'
and as4local = 'A'
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