I_AccrEngineAccrObjectType
Accrual Engine Accrual Object Type
I_AccrEngineAccrObjectType is a Basic CDS View that provides data about "Accrual Engine Accrual Object Type" in SAP S/4HANA. It reads from 1 data source (tacecomp) and exposes 4 fields with key field AccrualEngineAccrualObjectType. It has 1 association to related views. It is exposed through 4 OData services (UI_ACCRUALS_MANAGE, UI_ACCRUALS_PERDCAMT_MANAGE, UI_MANUALACCRS_MNG, ...). It is used in 1 Fiori application: Manage Manual Accruals.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tacecomp | tacecomp | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_AccrEngineAccrObjectTypeText | _Text | $projection.AccrualEngineAccrualObjectType = _Text.AccrualEngineAccrualObjectType |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IACEAOBJTYPE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Accrual Engine Accrual Object Type | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.representativeKey | AccrualEngineAccrualObjectType | view | |
| VDM.viewType | #BASIC | view | |
| Search.searchable | true | view |
OData Services (4)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_ACCRUALS_MANAGE | UI_ACCRUALS_MANAGE | V2 | C1 | NOT_RELEASED |
| UI_ACCRUALS_PERDCAMT_MANAGE | UI_ACCRS_PERDCAMT_MANAGE | V2 | C1 | NOT_RELEASED |
| UI_MANUALACCRS_MNG | UI_MANUALACCRS_MNG | V2 | C1 | NOT_RELEASED |
| UI_PURCHASEORDERACCRS_DISPLAY | UI_PURCHASEORDERACCRS_DSP | V2 | C1 | NOT_RELEASED |
Fiori Apps (1)
| App ID | App Name | Type | Description |
|---|---|---|---|
| F5423 | Manage Manual Accruals | Transactional | With this app, you can create, import, edit, and copy accrual objects as well as change their status. You can use this app to: - Display and edit accrual objects. - Create new accrual objects. - Copy accrual objects. - Import accrual objects from a spreadsheet file. - Change the status of an accrual object by pausing, suspending, or resuming its accrual subobjects. - Prematurely finish accrual subobjects by terminating them or undo premature termination. - View the parameters assigned to an accrual object. - View a detailed summary of changes made to the accrual object, comparing the old and new values of the accrual object fields. |
Manage Manual Accruals
Business Role: General Ledger Accountant
With this app, you can create, import, edit, and copy accrual objects as well as change their status.
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AccrualEngineAccrualObjectType | comp | ||
| AccrEngineParamFieldsStructure | param_fields | |||
| AccrObjTypeIsAvailableInCloud | available_in_cloud | |||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IACEAOBJTYPE'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Accrual Engine Accrual Object Type'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {
serviceQuality: #A,
sizeCategory: #S,
dataClass: #CUSTOMIZING
}
@ObjectModel.representativeKey: 'AccrualEngineAccrualObjectType'
@VDM.viewType: #BASIC
@Search.searchable: true
define view I_AccrEngineAccrObjectType
as select from tacecomp
// left outer join tacecompc on Comp.comp = tacecompc.comp
association [0..*] to I_AccrEngineAccrObjectTypeText as _Text on $projection.AccrualEngineAccrualObjectType = _Text.AccrualEngineAccrualObjectType
{
@ObjectModel.text.association: '_Text'
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
key comp as AccrualEngineAccrualObjectType,
param_fields as AccrEngineParamFieldsStructure,
available_in_cloud as AccrObjTypeIsAvailableInCloud,
/* Apply GFN */
// manual_change as ManualChangeIsAllowed,
// rvwapprv_enabled as ReviewApproveIsEnabled,
_Text
}
where
s4ace_used = 'X'
// and tacecompc.inactive <> 'X'
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