S_InvoiceUsersToAuthProfile
Invoice user to authorization profile
S_InvoiceUsersToAuthProfile is a CDS View that provides data about "Invoice user to authorization profile" in SAP S/4HANA. It reads from 2 data sources (S_MyInboxProfile, usrbf2) and exposes 1 field.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| S_MyInboxProfile | S_MyInboxProfile | inner |
| usrbf2 | usrbf2 | inner |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | SINVUSERAUTH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| EndUserText.label | Invoice user to authorization profile | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (1)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| UserID | _InvoiceAuth | UserID |
@AbapCatalog.sqlViewName: 'SINVUSERAUTH'
@AbapCatalog.compiler.compareFilter: true
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@EndUserText.label: 'Invoice user to authorization profile'
@ClientHandling.algorithm: #SESSION_VARIABLE
define view S_InvoiceUsersToAuthProfile
as select distinct from S_INVOICEAUTHUSER as _InvoiceAuth
//inner join S_MyInboxUser as _MyInboxAuth on _InvoiceAuth.UserID = _MyInboxAuth.UserID
inner join usrbf2 on usrbf2.bname = _InvoiceAuth.UserID
and usrbf2.objct = 'S_SERVICE'
inner join S_MyInboxProfile on S_MyInboxProfile.Profile = usrbf2.auth
{
_InvoiceAuth.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