I_AccrualEngineCompanyCode
Accrual Engine Company Code
I_AccrualEngineCompanyCode is a Basic CDS View that provides data about "Accrual Engine Company Code" in SAP S/4HANA. It reads from 1 data source (tace001) and exposes 8 fields with key fields AccrualEngineAccrualObjectType, CompanyCode. It has 2 associations to related views. It is exposed through 4 OData services (UI_ACCRUALS_MANAGE, UI_ACCRUALS_PERDCAMT_MANAGE, UI_PURCHASEORDERACCRS_DISPLAY, ...). It is used in 1 Fiori application: Review Service Entry Sheet Accruals. Part of development package ACE_S4_COMMON.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tace001 | tace001 | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_AccrEngineAccrObjectType | _AccrObjectType | $projection.AccrualEngineAccrualObjectType = _AccrObjectType.AccrualEngineAccrualObjectType |
| [1..1] | I_CompanyCode | _CompanyCode | $projection.CompanyCode = _CompanyCode.CompanyCode |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IACECOMPANYCODE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Accrual Engine Company Code | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.representativeKey | CompanyCode | 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_PURCHASEORDERACCRS_DISPLAY | UI_PURCHASEORDERACCRS_DSP | V2 | C1 | NOT_RELEASED |
| UI_SSACPERDCAMOUNTS_REVIEW | UI_SSACPERDCAMOUNTS_REVIEW | V2 | C1 | NOT_RELEASED |
Fiori Apps (1)
| App ID | App Name | Type | Description |
|---|---|---|---|
| F6108 | Review Service Entry Sheet Accruals | Transactional | Review service entry sheet accrual amount for each period. |
Review Service Entry Sheet Accruals
Business Role: Cost Accountant - Overhead
For service purchasing, you need to post accruals for costs that come from unapproved service entry sheets. A purchase order item could have multiple service entry sheets with different account assignments. The Service Entry Sheet Accruals application enables you to calculate and post accruals in General Ledger Accounting automatically. The relevant data can be transferred from Service Purchasing and Recording of the Materials Management component to the Accrual Engine and automatically converted from purchase order items into accrual subobjects. The system calculates the accruals for each account assignment specified in the items of service entry sheets. In each period, you can start an accrual run, which posts all accruals for the service transactions.
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AccrualEngineAccrualObjectType | tace001 | comp | |
| KEY | CompanyCode | tace001 | bukrs | |
| CompanyCodeName | _CompanyCode | CompanyCodeName | ||
| ControllingArea | _CompanyCode | ControllingArea | ||
| FinancialManagementArea | _CompanyCode | FinancialManagementArea | ||
| _CompanyCode | _CompanyCode | |||
| _ControllingArea | _CompanyCode | _ControllingArea | ||
| _AccrObjectType | _AccrObjectType |
@AbapCatalog.sqlViewName: 'IACECOMPANYCODE'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Accrual Engine Company Code'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {
serviceQuality: #A,
sizeCategory: #S,
dataClass: #CUSTOMIZING
}
@ObjectModel.representativeKey: 'CompanyCode'
@VDM.viewType: #BASIC
@Search.searchable: true
define view I_AccrualEngineCompanyCode
as select from tace001
association [1..1] to I_AccrEngineAccrObjectType as _AccrObjectType on $projection.AccrualEngineAccrualObjectType = _AccrObjectType.AccrualEngineAccrualObjectType
association [1..1] to I_CompanyCode as _CompanyCode on $projection.CompanyCode = _CompanyCode.CompanyCode
{
@ObjectModel.foreignKey.association: '_AccrObjectType'
@Consumption.filter.hidden: true
@UI.hidden: true
key tace001.comp as AccrualEngineAccrualObjectType,
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
@ObjectModel.text.element: ['CompanyCodeName']
key tace001.bukrs as CompanyCode,
@Semantics.text: true
_CompanyCode.CompanyCodeName,
@ObjectModel.foreignKey.association: '_ControllingArea'
@Consumption.filter.hidden: true
// @Consumption.hidden: true
@UI.hidden: true
_CompanyCode.ControllingArea,
@Consumption.hidden: true
_CompanyCode.FinancialManagementArea,
// _Text,
_CompanyCode,
@Consumption.filter.hidden: true
@Consumption.hidden: true
@UI.hidden: true
_CompanyCode._ControllingArea,
@Consumption.filter.hidden: true
@Consumption.hidden: true
@UI.hidden: true
_AccrObjectType
}
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