I_MnlAccrsAccrSubobjType

DDL: I_MNLACCRSACCRSUBOBJTYPE Type: view BASIC

Manual Accruals Sub-category

I_MnlAccrsAccrSubobjType is a Basic CDS View that provides data about "Manual Accruals Sub-category" in SAP S/4HANA. It reads from 1 data source (tacac_subobjtyp) and exposes 4 fields with key field ManualAccrualsAccrSubobjType. It has 2 associations 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)

SourceAliasJoin Type
tacac_subobjtyp tacac_subobjtyp from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_MnlAccrsAccrObjectType _MnlAccrsAccrObjectType $projection.ManualAccrualsAccrObjectType = _MnlAccrsAccrObjectType.ManualAccrualsAccrObjectType
[0..*] I_MnlAccrsAccrSubobjTypeText _Text $projection.ManualAccrualsAccrSubobjType = _Text.ManualAccrualsAccrSubobjType

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IACACSOBJTYP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Manual Accruals Sub-category view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.representativeKey ManualAccrualsAccrSubobjType view
VDM.viewType #BASIC view
Search.searchable true view
Consumption.ranked true view

OData Services (1)

ServiceBindingVersionContractRelease
UI_MANUALACCRS_MNG UI_MANUALACCRS_MNG 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 ManualAccrualsAccrSubobjType acac_subobjtype
ManualAccrualsAccrObjectType acac_objtype Accrual Object Category
_MnlAccrsAccrObjectType _MnlAccrsAccrObjectType
_Text _Text
@AbapCatalog:{
  sqlViewName: 'IACACSOBJTYP',
  compiler.compareFilter: true,
  preserveKey: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Manual Accruals Sub-category'
@ObjectModel:{
  usageType.serviceQuality: #C,
  usageType.sizeCategory: #M,
  usageType.dataClass: #CUSTOMIZING,
  representativeKey: 'ManualAccrualsAccrSubobjType'
}
@VDM.viewType:#BASIC
@Search.searchable: true
@Consumption.ranked: true
define view I_MnlAccrsAccrSubobjType
  as select from tacac_subobjtyp
  association [1..1] to I_MnlAccrsAccrObjectType     as _MnlAccrsAccrObjectType on $projection.ManualAccrualsAccrObjectType = _MnlAccrsAccrObjectType.ManualAccrualsAccrObjectType
  association [0..*] to I_MnlAccrsAccrSubobjTypeText as _Text                   on $projection.ManualAccrualsAccrSubobjType = _Text.ManualAccrualsAccrSubobjType
{
      @ObjectModel.text.association: '_Text'
      @Search: {
        defaultSearchElement:  true,
        fuzzinessThreshold: 0.8,
        ranking: #HIGH
      }
  key acac_subobjtype as ManualAccrualsAccrSubobjType,
      @EndUserText.label: 'Accrual Object Category'
      @ObjectModel.foreignKey.association: '_MnlAccrsAccrObjectType'
      acac_objtype    as ManualAccrualsAccrObjectType,
      // Associations:

      _MnlAccrsAccrObjectType,
      _Text
}