I_MobileApplicationUser

DDL: I_MOBILEAPPLICATIONUSER Type: view_entity BASIC

Mobile Application User

I_MobileApplicationUser (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Cross Applications

I_MobileApplicationUser is a Basic CDS View (Dimension) that provides data about "Mobile Application User" in SAP S/4HANA. It reads from 1 data source (/syclo/mdw00) and exposes 22 fields with key field MobileUserInternal. It has 2 associations to related views.

SAP Help Documentation

CategoryCDS Views for SAP Maintenance Assistant
Data CategoryDimension
Purpose
This CDS view provides the data to answer the following business questions: How many mobile users exist? Which mobile users are locked? To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations Users who want to use this CDS view need to access it via another CDS view (privileged mode).

Structure
Important Fields Important fields in this view include the following: Field Name Description MobileUserInternal User GUID MobileUserApplication Mobile Application Name MobileUser User Name MobileUserIsLocked Lock Flag MobileUserProductRoleIsValid No Valid Product Role

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentMOB-APP-MAO-ERP
CapabilitiesAnalytical Dimension, Association Target for Defining CDS Entities
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
/syclo/mdw00 /syclo/mdw00 from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_User _User _User.UserID = $projection.MobileUser
[0..*] I_MntMblAppUsrDfltAddrTypeText _DefaultAddressTypeText _DefaultAddressTypeText.MobileUserDefaultAddressType = $projection.MobileUserDefaultAddressType

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
EndUserText.label Mobile Application User view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey MobileUserInternal view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #BASIC view

Fields (22)

KeyFieldSource TableSource FieldDescription
KEY MobileUserInternal user_guid User GUID
MobileUserDeviceInternal device_id Syclo Device Id
MobileUserDeviceUser device_user_id Syclo Middleware Device User Id
MobileUserServerInternal server_id Syclo Middleware Server Serial No.
MobileUserApplication mobile_app Mobile Application Name
MobileUserGroupInternal group_id Syclo Middleware User Group Id
MobileUser sap_userid User Name
MaintMobileApplicationUserName _User UserDescription User Description
MobileUserLastSessionInternal last_sess_guid Session GUID
MobileUserIsLocked lock_flag Lock indicator
MobileUserProductRoleIsValid no_valid_role Flag - No Valid Product Role
MobileUserLogicalSystem source_system Logical system
MobileUserEmailAddress smtp_addr E-Mail Address
MobileUserWebAddress http_addr E-Mail Address
MobileUserDefaultAddressType default_addr Notification address type
MntMblAppUsrDfltAddrTypeName Short Text for Fixed Values
MobileUserCreatedBy created_by Version Created By
MobileUserCreationDateTime created_ts Creation timestamp
MobileUserChangedBy changed_by Last Changed By
MobileUserChangeDateTime changed_ts Changed time stamp
clientNULLasCreationDate Created On
_DefaultAddressTypeText _DefaultAddressTypeText

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_MobileApplicationUser.
-- 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_MobileApplicationUser AS
SELECT
  user_guid AS MobileUserInternal,
  device_id AS MobileUserDeviceInternal,
  device_user_id AS MobileUserDeviceUser,
  server_id AS MobileUserServerInternal,
  mobile_app AS MobileUserApplication,
  group_id AS MobileUserGroupInternal,
  sap_userid AS MobileUser,
  _User.UserDescription AS MaintMobileApplicationUserName,
  last_sess_guid AS MobileUserLastSessionInternal,
  lock_flag AS MobileUserIsLocked,
  no_valid_role AS MobileUserProductRoleIsValid,
  source_system AS MobileUserLogicalSystem,
  smtp_addr AS MobileUserEmailAddress,
  http_addr AS MobileUserWebAddress,
  default_addr AS MobileUserDefaultAddressType,
  _DefaultAddressTypeText[Language = $session.system_language].MntMblAppUsrDfltAddrTypeName AS MntMblAppUsrDfltAddrTypeName,
  created_by AS MobileUserCreatedBy,
  created_ts AS MobileUserCreationDateTime,
  changed_by AS MobileUserChangedBy,
  changed_ts AS MobileUserChangeDateTime,
  tstmp_to_dats( created_ts, abap_system_timezone( $session.client, 'NULL' ), $session.client, 'NULL' ) as CreationDate AS clientNULLasCreationDate
FROM /syclo/mdw00
LEFT OUTER JOIN I_User AS _User ON _User.UserID = MobileUser  -- association [1..1]
LEFT OUTER JOIN I_MntMblAppUsrDfltAddrTypeText AS _DefaultAddressTypeText ON _DefaultAddressTypeText.MobileUserDefaultAddressType = MobileUserDefaultAddressType  -- association [0..*]
;