I_PurCtrUserDetails

DDL: I_PURCTRUSERDETAILS SQL: ICTRUSERDETAILS Type: view BASIC

User details for contract

I_PurCtrUserDetails is a Basic CDS View that provides data about "User details for contract" in SAP S/4HANA. It reads from 2 data sources (I_User, usrefus) and exposes 3 fields with key field UserID.

Data Sources (2)

SourceAliasJoin Type
I_User _User inner
usrefus usrefus from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName ICTRUSERDETAILS view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
EndUserText.label User details for contract view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY UserID bname User name
UserDescription I_User UserDescription Full Name
UserName useralias Alias

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_PurCtrUserDetails.
-- 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: ICTRUSERDETAILS

CREATE VIEW I_PurCtrUserDetails AS
SELECT
  bname AS UserID,
  _User.UserDescription AS UserDescription,
  useralias AS UserName
FROM usrefus
INNER JOIN I_User AS _User ON /* join condition not captured in parsed metadata */
;