S_POUsersToAuthProfile
Purchase Order user to authorization profile
S_POUsersToAuthProfile is a CDS View that provides data about "Purchase Order user to authorization profile" in SAP S/4HANA. It reads from 2 data sources (S_MyInboxUser, S_POAuthUser) and exposes 1 field. Part of development package ODATA_MM_COMMONS_VH_WFL.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| S_MyInboxUser | _MyInboxAuth | inner |
| S_POAuthUser | _POAuth | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | SPOUSERAUTH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| EndUserText.label | Purchase Order user to authorization profile | view |
Fields (1)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| UserID | S_POAuthUser | UserID |
@AbapCatalog.sqlViewName: 'SPOUSERAUTH'
@AbapCatalog.compiler.compareFilter: true
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #M
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@EndUserText.label: 'Purchase Order user to authorization profile'
define view S_POUsersToAuthProfile
as select from S_POAuthUser as _POAuth
inner join S_MyInboxUser as _MyInboxAuth on _POAuth.UserID = _MyInboxAuth.UserID
{
_POAuth.UserID
}
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