I_AstRtrmtOblgnTransType

DDL: I_ASTRTRMTOBLGNTRANSTYPE SQL: IAROTATYPE Type: view COMPOSITE

ARO Transaction Type

I_AstRtrmtOblgnTransType is a Composite CDS View that provides data about "ARO Transaction Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field AROTransactionType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_AstRtrmtOblgnTransText _AstRtrmtOblgnTransText

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IAROTATYPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.dataMaintenance #DISPLAY_ONLY view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #B view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label ARO Transaction Type view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY AROTransactionType
DomainValue domvalue_l Lower Value
_AstRtrmtOblgnTransText _AstRtrmtOblgnTransText

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_AstRtrmtOblgnTransType.
-- 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: IAROTATYPE

CREATE VIEW I_AstRtrmtOblgnTransType AS
SELECT
  cast( dd07l.domvalue_l as aro_trans_type ) AS AROTransactionType,
  domvalue_l AS DomainValue
FROM dd07l
LEFT OUTER JOIN I_AstRtrmtOblgnTransText AS _AstRtrmtOblgnTransText ON /* condition not available in parsed metadata */  -- association [0..*]
;