I_DFS_MaintUserDetailsBasic

DDL: I_DFS_MAINTUSERDETAILSBASIC SQL: IDFSUSERDETL Type: view BASIC

User Details Basic View

I_DFS_MaintUserDetailsBasic is a Basic CDS View that provides data about "User Details Basic View" in SAP S/4HANA. It reads from 2 data sources (usr02, usr21) and exposes 5 fields with key field UserID.

Data Sources (2)

SourceAliasJoin Type
usr02 usr02 from
usr21 usr21 inner

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IDFSUSERDETL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label User Details Basic View view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY UserID usr21 bname User name
DfsObjectValdtyStartDate usr02 gltgv Valid from
DfsObjectValdtyEndDate usr02 gltgb Valid to
FirstName adrp name_first First Name
FullName adrp name_text 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 I_DFS_MaintUserDetailsBasic.
-- 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: IDFSUSERDETL

CREATE VIEW I_DFS_MaintUserDetailsBasic AS
SELECT
  usr21.bname AS UserID,
  usr02.gltgv AS DfsObjectValdtyStartDate,
  usr02.gltgb AS DfsObjectValdtyEndDate,
  adrp.name_first AS FirstName,
  adrp.name_text AS FullName
FROM usr02
INNER JOIN usr21 ON /* join condition not captured in parsed metadata */
;