I_EAMUserParameter

DDL: I_EAMUSERPARAMETER SQL: IEAMUSERP Type: view BASIC

User Parameter

I_EAMUserParameter is a Basic CDS View that provides data about "User Parameter" in SAP S/4HANA. It reads from 1 data source (usr05) and exposes 2 fields with key field UserParameter.

Data Sources (1)

SourceAliasJoin Type
usr05 usr05 from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IEAMUSERP view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
EndUserText.label User Parameter view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
AbapCatalog.preserveKey true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY UserParameter parid Partner ID
UserParameterValue parva Parameter value

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_EAMUserParameter.
-- 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: IEAMUSERP

CREATE VIEW I_EAMUserParameter AS
SELECT
  parid AS UserParameter,
  parva AS UserParameterValue
FROM usr05
;