P_ACCRUALITEMTYPE

DDL: P_ACCRUALITEMTYPE SQL: PACCRITEMTYPE Type: view BASIC

P_ACCRUALITEMTYPE is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (tace_itemtype, tace_itemtype) and exposes 5 fields with key fields comp, itemtype.

Data Sources (2)

SourceAliasJoin Type
tace_itemtype _itemtype from
tace_itemtype _planItemtype left_outer

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName PACCRITEMTYPE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.private true view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY comp tace_itemtype comp Legal competence
KEY itemtype tace_itemtype itemtype Object Type
xdependent tace_itemtype xdependent Derived Item Type
xpost tace_itemtype xpost To Be Posted
defacrmethod tace_itemtype defacrmethod Default Accr. Method

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view P_ACCRUALITEMTYPE.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: PACCRITEMTYPE

CREATE VIEW P_ACCRUALITEMTYPE AS
SELECT
  _itemtype.comp AS comp,
  _itemtype.itemtype AS itemtype,
  _itemtype.xdependent AS xdependent,
  _itemtype.xpost AS xpost,
  _itemtype.defacrmethod AS defacrmethod
FROM tace_itemtype AS _itemtype
LEFT OUTER JOIN tace_itemtype AS _planItemtype ON /* join condition not captured in parsed metadata */
;