I_AccrEngineAccrualMethodText

DDL: I_ACCRENGINEACCRUALMETHODTEXT SQL: IACEMETHODTEXT Type: view BASIC

Accrual Engine Accrual Method Text

I_AccrEngineAccrualMethodText is a Basic CDS View that provides data about "Accrual Engine Accrual Method Text" in SAP S/4HANA. It reads from 1 data source (tace_accmethodst) and exposes 6 fields with key fields AccrualEngineAccrualObjectType, AccrualMethod, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
tace_accmethodst tace_accmethodst from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[0..1] I_AccrEngineAccrObjectType _AccrObjectType $projection.AccrualEngineAccrualObjectType = _AccrObjectType.AccrualEngineAccrualObjectType

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IACEMETHODTEXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Accrual Engine Accrual Method Text view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.representativeKey AccrualMethod view
VDM.viewType #BASIC view
Search.searchable true view
ObjectModel.dataCategory #TEXT view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY AccrualEngineAccrualObjectType tace_accmethodst comp Legal competence
KEY AccrualMethod tace_accmethodst acrmethod Accr/Defrl Method
KEY Language tace_accmethodst langu Primary lang.
AccrualMethodName tace_accmethodst text User Group
_Language _Language
_AccrObjectType _AccrObjectType

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_AccrEngineAccrualMethodText.
-- 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: IACEMETHODTEXT

CREATE VIEW I_AccrEngineAccrualMethodText AS
SELECT
  tace_accmethodst.comp AS AccrualEngineAccrualObjectType,
  tace_accmethodst.acrmethod AS AccrualMethod,
  tace_accmethodst.langu AS Language,
  tace_accmethodst.text AS AccrualMethodName
FROM tace_accmethodst
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_AccrEngineAccrObjectType AS _AccrObjectType ON AccrualEngineAccrualObjectType = _AccrObjectType.AccrualEngineAccrualObjectType  -- association [0..1]
;