I_MnlAccrsAccrObjectTypeText

DDL: I_MNLACCRSACCROBJECTTYPETEXT Type: view BASIC

Text Table for Accrual Object Types

I_MnlAccrsAccrObjectTypeText is a Basic CDS View that provides data about "Text Table for Accrual Object Types" in SAP S/4HANA. It reads from 1 data source (tacac_objtypt) and exposes 5 fields with key fields ManualAccrualsAccrObjectType, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
tacac_objtypt tacac_objtypt from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_MnlAccrsAccrObjectType _MnlAccrsAccrObjectType $projection.ManualAccrualsAccrObjectType = _MnlAccrsAccrObjectType.ManualAccrualsAccrObjectType
[1..1] I_Language _Language $projection.Language = _Language.Language

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IACACOBJTYPTEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
Search.searchable true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.representativeKey ManualAccrualsAccrObjectType view
VDM.viewType #BASIC view
EndUserText.label Text Table for Accrual Object Types view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ManualAccrualsAccrObjectType acac_objtype Accr Object Cat
KEY Language langu Primary lang.
ManualAccrualsAccrObjTypeName text User Group
_MnlAccrsAccrObjectType _MnlAccrsAccrObjectType
_Language _Language

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_MnlAccrsAccrObjectTypeText.
-- 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.

CREATE VIEW I_MnlAccrsAccrObjectTypeText AS
SELECT
  acac_objtype AS ManualAccrualsAccrObjectType,
  langu AS Language,
  text AS ManualAccrualsAccrObjTypeName
FROM tacac_objtypt
LEFT OUTER JOIN I_MnlAccrsAccrObjectType AS _MnlAccrsAccrObjectType ON ManualAccrualsAccrObjectType = _MnlAccrsAccrObjectType.ManualAccrualsAccrObjectType  -- association [1..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [1..1]
;