I_PrepaymentAgrmtUserNameVH
Prepayment Agrmt User Name VH
I_PrepaymentAgrmtUserNameVH is a Basic CDS View that provides data about "Prepayment Agrmt User Name VH" in SAP S/4HANA. It reads from 2 data sources (I_User, usr02) and exposes 3 fields with key field UserName.
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPPMGUSRVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Prepayment Agrmt User Name VH | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ClientHandling.type | #CLIENT_DEPENDENT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Search.searchable | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | UserName | bname | User Name | |
| UserID | accnt | UserID | ||
| UserDescription | UserDescription | Created By |
@AbapCatalog.sqlViewName: 'IPPMGUSRVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Prepayment Agrmt User Name VH'
@VDM.viewType: #BASIC
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ClientHandling:{
type: #CLIENT_DEPENDENT,
algorithm: #SESSION_VARIABLE
}
@Search.searchable: true
define view I_PrepaymentAgrmtUserNameVH
as select from usr02
inner join I_User on I_User.UserID = usr02.bname
{
@Search.fuzzinessThreshold: 0.8
@EndUserText.label: 'User Name'
@ObjectModel.text.element: ['UserDescription']
@Search.defaultSearchElement: true
key bname as UserName,
@EndUserText.label: 'UserID'
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
accnt as UserID,
// @UI.lineItem: [{hidden: true}]
@EndUserText.label: 'Created By'
@Semantics.text: true
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
UserDescription as UserDescription
}
//
//where
// UserID != ''
// and UserDescription != ''
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_USER",
"USR02"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"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