C_AURSStoreUser

DDL: C_AURSSTOREUSER Type: view_entity CONSUMPTION Package: RFM_STORE_ASSIGN_USER

AURS: Store User

C_AURSStoreUser is a Consumption CDS View that provides data about "AURS: Store User" in SAP S/4HANA. It reads from 1 data source (I_RetailStoreUserAssignment) and exposes 7 fields with key fields Store, AssignedUser. It has 1 association to related views. It is exposed through 1 OData service (UI_RFM_STORE_ASSIGNUSER). It is used in 2 Fiori applications: My Store Assignment, Assign Associates to Store. Part of development package RFM_STORE_ASSIGN_USER.

Data Sources (1)

SourceAliasJoin Type
I_RetailStoreUserAssignment I_RetailStoreUserAssignment from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_UserContactCard _UserContactCard $projection.AssignedUser = _UserContactCard.ContactCardID

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
Metadata.allowExtensions true view
ObjectModel.representativeKey AssignedUser view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view

OData Services (1)

ServiceBindingVersionContractRelease
UI_RFM_STORE_ASSIGNUSER UI_RFM_STORE_ASSIGNUSER V2 C1 NOT_RELEASED

Fiori Apps (2)

App IDApp NameTypeDescription
F4334 My Store Assignment Transactional With this app, you can work in different stores and with various SAP Fiori apps for in-store merchandise and inventory management frequently as a store associate. For example, store associate can view all store assignments and can assign oneself to work with the apps in a specific store.
F8523 Assign Associates to Store Transactional With this app, you can work in different stores and with various SAP Fiori apps for in-store merchandise and inventory management frequently as store manager or associate. For example, store manager can view all store assignments and can assign store associates to work with the apps in a specific store.

My Store Assignment

Business Role: Retail Store Associate

With this app you can assign your own user and other users to stores. You can also display the store assignments of all users.

Assign Associates to Store

Business Role: Retail Store Manager

With this app, as a store manager, you can view available users, their store assignments, and reassign them to different stores. For example, store managers can review all store assignments and grant store associates access to apps for specific stores.

Key Features: Assign users to stores to access all the retail in-store merchandise and inventory management apps. Assign multiple store associates to a store simultaneously. View the store assignments for all store associates.

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Store Store
KEY AssignedUser AssignedUser
FullName _UserContactCard FullName
FirstName _UserContactCard FirstName
LastName _UserContactCard LastName
IsCurrentUser
_ParentStore _ParentStore
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #NOT_REQUIRED

@VDM.viewType: #CONSUMPTION
@Metadata.allowExtensions: true
@ObjectModel: {
    representativeKey: 'AssignedUser',
    usageType.serviceQuality: #C,
    usageType.sizeCategory: #L,
    usageType.dataClass: #MASTER
}
define view entity C_AURSStoreUser
  as select from I_RetailStoreUserAssignment

  association        to parent C_AURSStore as _ParentStore     on $projection.Store = _ParentStore.Store
  association [0..1] to I_UserContactCard  as _UserContactCard on $projection.AssignedUser = _UserContactCard.ContactCardID
{
  key Store,
  key AssignedUser,

      _UserContactCard.FullName,
      _UserContactCard.FirstName,
      _UserContactCard.LastName,

      cast(case when AssignedUser = $session.user then 'X' else '' end as boolean preserving type) as IsCurrentUser,

      _ParentStore
}