C_AURSStoreUser
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)
| Source | Alias | Join Type |
|---|---|---|
| I_RetailStoreUserAssignment | I_RetailStoreUserAssignment | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_UserContactCard | _UserContactCard | $projection.AssignedUser = _UserContactCard.ContactCardID |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_RFM_STORE_ASSIGNUSER | UI_RFM_STORE_ASSIGNUSER | V2 | C1 | NOT_RELEASED |
Fiori Apps (2)
| App ID | App Name | Type | Description |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA