P_ACCRUALITEMTYPE

CDS View

P_ACCRUALITEMTYPE is a CDS View in S/4HANA. It contains 2 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
FACRA_RUN_PROGRAM view from

Fields (2)

KeyField CDS FieldsUsed in Views
KEY comp comp 1
KEY itemtype itemtype 1
@AbapCatalog.sqlViewName: 'PACCRITEMTYPE'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #MIXED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.private:true
@VDM.viewType: #BASIC
define view P_ACCRUALITEMTYPE
  as select from    tace_itemtype as _itemtype
    left outer join tace_itemtype as _planItemtype on  _itemtype.comp     = _planItemtype.comp
                                                   and _itemtype.itemtype = _planItemtype.planned_itemtype

{
  key _itemtype.comp,
  key _itemtype.itemtype,
      _itemtype.xdependent,
      _itemtype.xupld_currnt_acramnt,
      _itemtype.xpost,
      _itemtype.xpost_inc_delta,
      _itemtype.xpost_fin_delta,
      _itemtype.xpost_per_delta,
      _itemtype.planned_itemtype,
      _itemtype.actual_itemtype,
      _itemtype.utilize_itemtype,
      _itemtype.defacrmethod
}
where
  _planItemtype.comp is null
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TACE_ITEMTYPE"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/