I_EAMUserParameter

DDL: I_EAMUSERPARAMETER Type: view_entity BASIC Package: IWO1

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. It is exposed through 2 OData services (ASQL_F5241, UI_MAINTENANCEORDER_MANAGE). Part of development package IWO1.

Data Sources (1)

SourceAliasJoin Type
usr05 usr05 from

Annotations (6)

NameValueLevelField
VDM.viewType #BASIC view
EndUserText.label User Parameter view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view

OData Services (2)

ServiceBindingVersionContractRelease
ASQL_F5241 ASQL_F5241 C2 NOT_RELEASED
UI_MAINTENANCEORDER_MANAGE UI_MAINTENANCEORDER_MANAGE V4 C1 NOT_RELEASED

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.

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