I_RAPerfObligationEventType

DDL: I_RAPERFOBLIGATIONEVENTTYPE Type: view_entity BASIC

Event Type

I_RAPerfObligationEventType (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Accounting and Financial Close

I_RAPerfObligationEventType is a Basic CDS View that provides data about "Event Type" in SAP S/4HANA. It reads from 1 data source (farr_c_evnt_ty) and exposes 2 fields with key field PerfOblgnEventType. It has 1 association to related views.

SAP API Hub

StateC1
Line of BusinessAccounting and Financial Close
Application ComponentFI-RA
CapabilitiesAnalytical Dimension, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities
PackageAccounting and Financial Close for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides access to the master data of the event types and the prerequisites for answering the following business questions:</p> <ul> <li><p>How many event types are defined?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
farr_c_evnt_ty farr_c_evnt_ty from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_RAPerfOblgnEventTypeText _Text $projection.PerfOblgnEventType = _Text.PerfOblgnEventType

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.technicalName IRAEVENTTYPE view
EndUserText.label Event Type view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey PerfOblgnEventType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #BASIC view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY PerfOblgnEventType event_type Type of Event
_Text _Text

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_RAPerfObligationEventType.
-- 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_RAPerfObligationEventType AS
SELECT
  event_type AS PerfOblgnEventType
FROM farr_c_evnt_ty
LEFT OUTER JOIN I_RAPerfOblgnEventTypeText AS _Text ON PerfOblgnEventType = _Text.PerfOblgnEventType  -- association [0..*]
;