I_ObjectFunction

DDL: I_OBJECTFUNCTION SQL: IOBJECT_FUNCTION Type: view

Request/Task: Object Function

I_ObjectFunction is a CDS View that provides data about "Request/Task: Object Function" in SAP S/4HANA. It reads from 2 data sources (dd07l, dd07t) and exposes 2 fields with key field domvalue_l.

Data Sources (2)

SourceAliasJoin Type
dd07l Domain from
dd07t DomainText left_outer

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName IOBJECT_FUNCTION view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Request/Task: Object Function view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY domvalue_l dd07l domvalue_l Lower Value
TransportRequestObjectFuncText dd07t ddtext Short 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_ObjectFunction.
-- 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: IOBJECT_FUNCTION

CREATE VIEW I_ObjectFunction AS
SELECT
  Domain.domvalue_l AS domvalue_l,
  DomainText.ddtext AS TransportRequestObjectFuncText
FROM dd07l AS Domain
LEFT OUTER JOIN dd07t AS DomainText ON /* join condition not captured in parsed metadata */
;