I_MnlAccrsAccrObjectType
Accrual Obj Types in Accrual Accounting
I_MnlAccrsAccrObjectType is a Basic CDS View that provides data about "Accrual Obj Types in Accrual Accounting" in SAP S/4HANA. It reads from 1 data source (tacac_objtyp) and exposes 2 fields with key field ManualAccrualsAccrObjectType. It has 1 association to related views. It is exposed through 1 OData service (UI_MANUALACCRS_MNG). It is used in 1 Fiori application: Manage Manual Accruals.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tacac_objtyp | tacac_objtyp | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_MnlAccrsAccrObjectTypeText | _Text | $projection.ManualAccrualsAccrObjectType = _Text.ManualAccrualsAccrObjectType |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IACACOBJTYP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Consumption.ranked | true | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.representativeKey | ManualAccrualsAccrObjectType | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Accrual Obj Types in Accrual Accounting | view | |
| Search.searchable | true | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_MANUALACCRS_MNG | UI_MANUALACCRS_MNG | 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 (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ManualAccrualsAccrObjectType | acac_objtype | Accrual Object Category | |
| _Text | _Text |
@AbapCatalog:{
sqlViewName: 'IACACOBJTYP',
compiler.compareFilter: true,
preserveKey: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Consumption.ranked: true
@ObjectModel:{
usageType.serviceQuality: #C,
usageType.sizeCategory: #M,
usageType.dataClass: #CUSTOMIZING,
representativeKey: 'ManualAccrualsAccrObjectType'
}
@VDM.viewType:#BASIC
@EndUserText.label: 'Accrual Obj Types in Accrual Accounting'
@Search.searchable: true
define view I_MnlAccrsAccrObjectType
as select from tacac_objtyp
association [0..*] to I_MnlAccrsAccrObjectTypeText as _Text on $projection.ManualAccrualsAccrObjectType = _Text.ManualAccrualsAccrObjectType
{
@EndUserText.label: 'Accrual Object Category'
@ObjectModel.text.association: '_Text'
@Search: {
defaultSearchElement: true,
fuzzinessThreshold: 0.8,
ranking: #HIGH
}
key acac_objtype as ManualAccrualsAccrObjectType,
// associations:
_Text
}
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