I_Origin

DDL: I_ORIGIN SQL: IORIGIN Type: view BASIC

Origin Indicator

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

Data Sources (1)

SourceAliasJoin Type
tfiblorigin tfiblorigin from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_OriginText _Text $projection.Origin = _Text.Origin

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IORIGIN view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Origin Indicator view
VDM.viewType #BASIC view
ObjectModel.representativeKey Origin view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
AbapCatalog.preserveKey true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Origin origin Task Origin
_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_Origin.
-- 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: IORIGIN

CREATE VIEW I_Origin AS
SELECT
  Origin
FROM tfiblorigin
LEFT OUTER JOIN I_OriginText AS _Text ON Origin = _Text.Origin  -- association [0..*]
;