I_AccrEngineAccrualMethod

DDL: I_ACCRENGINEACCRUALMETHOD SQL: IACEMETHOD Type: view BASIC

Accrual Engine Accrual Method

I_AccrEngineAccrualMethod is a Basic CDS View that provides data about "Accrual Engine Accrual Method" in SAP S/4HANA. It reads from 1 data source (tace_accmethods) and exposes 4 fields with key fields AccrualEngineAccrualObjectType, AccrualMethod. It has 2 associations to related views. It is exposed through 4 OData services (UI_ACCRUALS_MANAGE, UI_MANUALACCRS_MNG, UI_PURCHASEORDERACCRS_DISPLAY, ...). It is used in 1 Fiori application: Manage Manual Accruals.

Data Sources (1)

SourceAliasJoin Type
tace_accmethods tace_accmethods from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_AccrEngineAccrObjectType _AccrObjectType $projection.AccrualEngineAccrualObjectType = _AccrObjectType.AccrualEngineAccrualObjectType
[0..*] I_AccrEngineAccrualMethodText _Text $projection.AccrualEngineAccrualObjectType = _Text.AccrualEngineAccrualObjectType and $projection.AccrualMethod = _Text.AccrualMethod

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IACEMETHOD view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Accrual Engine Accrual Method view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.representativeKey AccrualMethod view
VDM.viewType #BASIC view
Search.searchable true view

OData Services (4)

ServiceBindingVersionContractRelease
UI_ACCRUALS_MANAGE UI_ACCRUALS_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
UI_SRVCENTRSHTACCRS_DISPLAY UI_SRVCENTRSHTACCRS_DSP V2 C1 NOT_RELEASED

Fiori Apps (1)

App IDApp NameTypeDescription
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)

KeyFieldSource TableSource FieldDescription
KEY AccrualEngineAccrualObjectType tace_accmethods comp
KEY AccrualMethod tace_accmethods acrmethod
_AccrObjectType _AccrObjectType
_Text _Text
@AbapCatalog.sqlViewName: 'IACEMETHOD'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Accrual Engine Accrual Method'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {
  serviceQuality: #A,
  sizeCategory: #S,
  dataClass: #CUSTOMIZING
 }
@ObjectModel.representativeKey: 'AccrualMethod'
@VDM.viewType: #BASIC
@Search.searchable: true
define view I_AccrEngineAccrualMethod
  as select from tace_accmethods
  association [0..1] to I_AccrEngineAccrObjectType    as _AccrObjectType on  $projection.AccrualEngineAccrualObjectType = _AccrObjectType.AccrualEngineAccrualObjectType
  association [0..*] to I_AccrEngineAccrualMethodText as _Text           on  $projection.AccrualEngineAccrualObjectType = _Text.AccrualEngineAccrualObjectType
                                                                         and $projection.AccrualMethod                  = _Text.AccrualMethod
{
      @ObjectModel.foreignKey.association: '_AccrObjectType'
  key tace_accmethods.comp      as AccrualEngineAccrualObjectType,
      @ObjectModel.text.association: '_Text'
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
  key tace_accmethods.acrmethod as AccrualMethod,

      _AccrObjectType,
      _Text

}