I_TaskOwners

DDL: I_TASKOWNERS Type: view_entity

Task Owners

I_TaskOwners is a CDS View that provides data about "Task Owners" in SAP S/4HANA. It reads from 2 data sources (SUSR_USERS_FOR_OBJECT_ACTVT, I_User) and exposes 2 fields with key field TransportRequestTaskOwner.

Data Sources (2)

SourceAliasJoin Type
SUSR_USERS_FOR_OBJECT_ACTVT SUSR_USERS_FOR_OBJECT_ACTVT inner
I_User User inner

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Task Owners view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY TransportRequestTaskOwner I_User UserID User Name
UserDescriptionendasUserDescription

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_TaskOwners.
-- 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_TaskOwners AS
SELECT
  User.UserID AS TransportRequestTaskOwner,
  case when User.UserDescription is null then User.UserID when User.UserDescription = '' then User.UserID else User.UserDescription end as UserDescription AS UserDescriptionendasUserDescription
INNER JOIN SUSR_USERS_FOR_OBJECT_ACTVT ON /* join condition not captured in parsed metadata */
INNER JOIN I_User AS User ON /* join condition not captured in parsed metadata */
;