P_UserLogondata

DDL: P_USERLOGONDATA Type: view_entity

User Logondata

P_UserLogondata is a CDS View that provides data about "User Logondata" in SAP S/4HANA. It reads from 1 data source (P_USR02) and exposes 7 fields with key field bname.

Data Sources (1)

SourceAliasJoin Type
P_USR02 P_USR02 from

Annotations (7)

NameValueLevelField
AbapCatalog.extensibility.extensible false view
AccessControl.authorizationCheck #CHECK view
EndUserText.label User Logondata view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view
Metadata.allowExtensions false view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY bname bname User name
gltgv gltgv Valid from
gltgb gltgb Valid to
ustyp ustyp User Type
class class User Group
accnt accnt Number
tzone tzone Time Zone Difference

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 P_UserLogondata.
-- 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 P_UserLogondata AS
SELECT
  bname,
  gltgv,
  gltgb,
  ustyp,
  class,
  accnt,
  tzone
FROM P_USR02
;