I_EAMUserDefaultValues

DDL: I_EAMUSERDEFAULTVALUES SQL: IEAMUSRDFVALUES Type: view BASIC

User Default Values

I_EAMUserDefaultValues is a Basic CDS View that provides data about "User Default Values" in SAP S/4HANA. It reads from 1 data source (tpmus) and exposes 15 fields with key field UserID. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
tpmus tpmus from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_PMNotificationType _NotificationType _NotificationType.NotificationType = $projection.NotificationType
[0..1] I_OrderType _OrderType _OrderType.OrderType = $projection.OrderType

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IEAMUSRDFVALUES view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label User Default Values view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY UserID tpmus uname User Name
WorkCenterInternalID tpmus gewrk Work Center
WorkCenterTypeCode tpmus pm_objty Object Type
NotificationType tpmus qmart Notifictn Type
OrderType tpmus auart Sales Doc. Type
StorageLocation tpmus eam_default_storage_location Storage Location
IssuingPlant tpmus qmawerk Plant for Mat.
SetDeletionFlagAndNotifStatus tpmus eams_dlfl Deletion Flag
ResetDeltnFlagAndSetNotifSts tpmus eams_reset_dlfl Reset Deletion Flag
CompleteTechlyAndSetNotifSts tpmus eams_teco Complete (Tech.)
ResetTechCompltnAndSetNotifSts tpmus eams_reset_teco Cancel Tech. Compl.
DoNotExectOrderAndSetNotifSts tpmus eams_do_not_exec Do Not Execute
CompleteBusinessAndSetNotifSts tpmus eams_close Complete (Business)
_NotificationType _NotificationType
_OrderType _OrderType

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_EAMUserDefaultValues.
-- 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: IEAMUSRDFVALUES

CREATE VIEW I_EAMUserDefaultValues AS
SELECT
  tpmus.uname AS UserID,
  tpmus.gewrk AS WorkCenterInternalID,
  tpmus.pm_objty AS WorkCenterTypeCode,
  tpmus.qmart AS NotificationType,
  tpmus.auart AS OrderType,
  tpmus.eam_default_storage_location AS StorageLocation,
  tpmus.qmawerk AS IssuingPlant,
  tpmus.eams_dlfl AS SetDeletionFlagAndNotifStatus,
  tpmus.eams_reset_dlfl AS ResetDeltnFlagAndSetNotifSts,
  tpmus.eams_teco AS CompleteTechlyAndSetNotifSts,
  tpmus.eams_reset_teco AS ResetTechCompltnAndSetNotifSts,
  tpmus.eams_do_not_exec AS DoNotExectOrderAndSetNotifSts,
  tpmus.eams_close AS CompleteBusinessAndSetNotifSts
FROM tpmus
LEFT OUTER JOIN I_PMNotificationType AS _NotificationType ON _NotificationType.NotificationType = NotificationType  -- association [0..1]
LEFT OUTER JOIN I_OrderType AS _OrderType ON _OrderType.OrderType = OrderType  -- association [0..1]
;