E_UserDefaultSettingItem

DDL: E_USERDEFAULTSETTINGITEM SQL: EUSERSETTINGITEM Type: view EXTENSION

User Default Settings Item Extensibilty view

E_UserDefaultSettingItem is a Extension CDS View that provides data about "User Default Settings Item Extensibilty view" in SAP S/4HANA. It reads from 1 data source (user_pers_data) and exposes 3 fields with key fields Employee, PersonalizationID, BusinessObjectType.

Data Sources (1)

SourceAliasJoin Type
user_pers_data Persistence from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName EUSERSETTINGITEM view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
VDM.viewType #EXTENSION view
EndUserText.label User Default Settings Item Extensibilty view view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Employee user_pers_data employee Object ID
KEY PersonalizationID user_pers_data personalizationid UUID
KEY BusinessObjectType user_pers_data businessobjecttype Object Type

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 E_UserDefaultSettingItem.
-- 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: EUSERSETTINGITEM

CREATE VIEW E_UserDefaultSettingItem AS
SELECT
  Persistence.employee AS Employee,
  Persistence.personalizationid AS PersonalizationID,
  Persistence.businessobjecttype AS BusinessObjectType
FROM user_pers_data AS Persistence
;