R_Sitn2InstceUserName

DDL: R_SITN2INSTCEUSERNAME SQL: RSITN2INSTUNAME Type: view BASIC

User Name for Situation Instance

R_Sitn2InstceUserName is a Basic CDS View that provides data about "User Name for Situation Instance" in SAP S/4HANA. It reads from 1 data source (I_User) and exposes 2 fields with key field UserID.

Data Sources (1)

SourceAliasJoin Type
I_User I_User from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName RSITN2INSTUNAME view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
EndUserText.label User Name for Situation Instance view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY UserID UserID User Name
UserDescription UserDescription Full Name

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 R_Sitn2InstceUserName.
-- 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: RSITN2INSTUNAME

CREATE VIEW R_Sitn2InstceUserName AS
SELECT
  UserID,
  UserDescription
FROM I_User
;