I_AccrEngineAccrItemType

DDL: I_ACCRENGINEACCRITEMTYPE SQL: IACEITEMTYPE Type: view BASIC

Accrual Engine: Accrual Item Type

I_AccrEngineAccrItemType is a Basic CDS View that provides data about "Accrual Engine: Accrual Item Type" in SAP S/4HANA. It reads from 1 data source (I_AccrEngineAccrItemTypeBasic) and exposes 9 fields with key fields AccrualEngineAccrualObjectType, AccrualItemType. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_AccrEngineAccrItemTypeBasic I_AccrEngineAccrItemTypeBasic from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_AccrEngineAccrObjectType _AccrObjectType $projection.AccrualEngineAccrualObjectType = _AccrObjectType.AccrualEngineAccrualObjectType
[0..*] I_AccrEngineAccrItemTypeText _Text $projection.AccrualEngineAccrualObjectType = _Text.AccrualEngineAccrualObjectType and $projection.AccrualItemType = _Text.AccrualItemType

Annotations (11)

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

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY AccrualEngineAccrualObjectType AccrualEngineAccrualObjectType Component
KEY AccrualItemType AccrualItemType Accrual Item Type
PlanAccrualItemType PlanAccrualItemType Plnd Costs Itm Type
ActualAccrualItemType ActualAccrualItemType Actl Costs Item Type
DeferralItemType DeferralItemType Deferral Item Type
AccrualItemTypeIsDerived AccrualItemTypeIsDerived Derived Item Type
AccrualItemTypeCategory AccrualItemTypeCategory Item Type Category
_AccrObjectType _AccrObjectType
_Text _Text

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 I_AccrEngineAccrItemType.
-- 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: IACEITEMTYPE

CREATE VIEW I_AccrEngineAccrItemType AS
SELECT
  AccrualEngineAccrualObjectType,
  AccrualItemType,
  PlanAccrualItemType,
  ActualAccrualItemType,
  DeferralItemType,
  AccrualItemTypeIsDerived,
  AccrualItemTypeCategory
FROM I_AccrEngineAccrItemTypeBasic
LEFT OUTER JOIN I_AccrEngineAccrObjectType AS _AccrObjectType ON AccrualEngineAccrualObjectType = _AccrObjectType.AccrualEngineAccrualObjectType  -- association [0..1]
LEFT OUTER JOIN I_AccrEngineAccrItemTypeText AS _Text ON AccrualEngineAccrualObjectType = _Text.AccrualEngineAccrualObjectType AND AccrualItemType = _Text.AccrualItemType  -- association [0..*]
;