C_PPS_UserVH
User Master Help
C_PPS_UserVH is a Consumption CDS View that provides data about "User Master Help" in SAP S/4HANA. It reads from 1 data source (I_User) and exposes 4 fields with key field UserID. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_User | _User | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_UserContactCard | _UserContactCard | _UserContactCard.ContactCardID = $projection.UserID |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | User Master Help | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| Search.searchable | true | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| Consumption.ranked | true | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.representativeKey | UserID | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | UserID | UserID | User | |
| PersonFullName | _UserContactCard | FullName | Description | |
| FirstName | _UserContactCard | FirstName | ||
| LastName | _UserContactCard | LastName |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'User Master Help'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #C,
sizeCategory: #M
}
@Search.searchable: true
@ObjectModel.semanticKey: ['UserID']
@ObjectModel.dataCategory:#VALUE_HELP
@ObjectModel.usageType.dataClass: #MASTER
@Consumption.ranked:true
@VDM.viewType: #CONSUMPTION
@ObjectModel.representativeKey: 'UserID'
define view entity C_PPS_UserVH
as select from I_User as _User
association [0..1] to I_UserContactCard as _UserContactCard on _UserContactCard.ContactCardID = $projection.UserID
{
@Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #HIGH }
@EndUserText.label: 'User'
key UserID,
@Semantics.text: true
@EndUserText.label: 'Description'
_UserContactCard.FullName as PersonFullName,
@UI.hidden: true
@Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #MEDIUM }
_UserContactCard.FirstName,
@UI.hidden: true
@Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #LOW }
_UserContactCard.LastName
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_USER",
"I_USERCONTACTCARD"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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