I_EAMObjectUsrStatusWithNumber

DDL: I_EAMOBJECTUSRSTATUSWITHNUMBER SQL: IEAMOBJUSTNUM Type: view BASIC

EAM Object User Status with Number

I_EAMObjectUsrStatusWithNumber is a Basic CDS View that provides data about "EAM Object User Status with Number" in SAP S/4HANA. It reads from 2 data sources (I_UserStatus, jsto) and exposes 4 fields with key field StatusObject.

Data Sources (2)

SourceAliasJoin Type
I_UserStatus _StatusCode inner
jsto jsto from

Annotations (9)

NameValueLevelField
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName IEAMOBJUSTNUM view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label EAM Object User Status with Number view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY StatusObject jsto objnr Val. Obj. No.
StatusProfile jsto stsma Status Profile
StatusCode I_StatusObjectStatusBasic StatusCode Statuscode
_StatusProfile _StatusProfile

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_EAMObjectUsrStatusWithNumber.
-- 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: IEAMOBJUSTNUM

CREATE VIEW I_EAMObjectUsrStatusWithNumber AS
SELECT
  jsto.objnr AS StatusObject,
  jsto.stsma AS StatusProfile,
  I_StatusObjectStatusBasic.StatusCode AS StatusCode
FROM jsto
INNER JOIN I_UserStatus AS _StatusCode ON /* join condition not captured in parsed metadata */
;