I_DraftAdministrativeUserVH
Draft User
I_DraftAdministrativeUserVH is a CDS View that provides data about "Draft User" in SAP S/4HANA. It reads from 1 data source (I_User) and exposes 3 fields with key field UserID. It is exposed through 3 OData services (UI_MANUALSPREADING, UI_PRICEALLOCATION, UI_TRANSP_DOC).
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_User | _UserDescription | inner |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Draft User | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| Search.searchable | true | view |
OData Services (3)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_MANUALSPREADING | UI_MANUALSPREADING | V4 | C1 | NOT_RELEASED |
| UI_PRICEALLOCATION | UI_PRICEALLOCATION | V4 | C1 | NOT_RELEASED |
| UI_TRANSP_DOC | UI_TRANSP_DOC | V4 | C1 | NOT_RELEASED |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Draft User'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #S,
dataClass: #MIXED
}
@Search.searchable: true
define view entity I_DraftAdministrativeUserVH
as select distinct from usr_attr_id_assign_w_default ( p_attr_type : 'DRAFTSHARE' ) as UserAttr
inner join I_User as _UserDescription on _UserDescription.UserID = UserAttr.bname
{
@ObjectModel.text.element: ['UserDescription']
@Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #HIGH }
key UserAttr.bname as UserID,
@Consumption.hidden: true
UserAttr.attr_id as UserGroup,
@Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #LOW }
_UserDescription.UserDescription as UserDescription
}
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