I_AccrualObjectType

DDL: I_ACCRUALOBJECTTYPE SQL: IFIACCRTYPE Type: view BASIC

Accrual Object Type

I_AccrualObjectType is a Basic CDS View that provides data about "Accrual Object Type" in SAP S/4HANA. It reads from 1 data source (tacr_obj_type) and exposes 1 field with key field AccrualObjectType.

Data Sources (1)

SourceAliasJoin Type
tacr_obj_type tacr_obj_type from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IFIACCRTYPE view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
EndUserText.label Accrual Object Type view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.representativeKey AccrualObjectType view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY AccrualObjectType acrobj_type Accrual Object Type

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_AccrualObjectType.
-- 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: IFIACCRTYPE

CREATE VIEW I_AccrualObjectType AS
SELECT
  acrobj_type AS AccrualObjectType
FROM tacr_obj_type
;