I_AccrualObject

DDL: I_ACCRUALOBJECT SQL: IACCRO Type: view BASIC

Accrual Object

I_AccrualObject is a Basic CDS View that provides data about "Accrual Object" in SAP S/4HANA.

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IACCRO view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Accrual Object view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #BASIC view
AbapCatalog.preserveKey true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY AccrualObjectType acesobj comp Legal competence
KEY AccrualObjectLogicalSystem acesobj logsys Source system
KEY CompanyCode acesobj bukrs Value
KEY AccrualObject acesobj ref_key Source Reference Key

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_AccrualObject.
-- 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: IACCRO

CREATE VIEW I_AccrualObject AS
SELECT
  acesobj.comp AS AccrualObjectType,
  acesobj.logsys AS AccrualObjectLogicalSystem,
  acesobj.bukrs AS CompanyCode,
  acesobj.ref_key AS AccrualObject
;