C_BillingDocumentUserVH
Billing Document User Value Help
C_BillingDocumentUserVH is a Consumption CDS View that provides data about "Billing Document User Value Help" in SAP S/4HANA. It reads from 1 data source (I_User) and exposes 3 fields with key field UserID. It has 1 association to related views. Part of development package ODATA_SD_BIL_COMMON_UI_V2.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_User | User | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_BillingDocumentBasic | _BillingDocumentBasic | $projection.UserID = _BillingDocumentBasic.CreatedByUser |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CBILLDOCUSERVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_EXCLUDED | view | |
| EndUserText.label | Billing Document User Value Help | view | |
| Search.searchable | true | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.representativeKey | UserID | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view |
@AbapCatalog: {
sqlViewName: 'CBILLDOCUSERVH',
compiler.compareFilter: true,
preserveKey: true
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl: {
authorizationCheck: #CHECK,
personalData.blocking: #BLOCKED_DATA_EXCLUDED
}
@EndUserText.label: 'Billing Document User Value Help'
@Search.searchable: true
@VDM.viewType: #CONSUMPTION
@ObjectModel: {
representativeKey: 'UserID',
usageType: {
dataClass: #TRANSACTIONAL,
serviceQuality: #A,
sizeCategory: #S
}
}
@UI.presentationVariant:{
sortOrder: [
{ by: 'UserID', direction: #ASC },
{ by: 'UserDescription', direction: #ASC }]
}
define view C_BillingDocumentUserVH
as select from I_User as User
association [0..*] to I_BillingDocumentBasic as _BillingDocumentBasic on $projection.UserID = _BillingDocumentBasic.CreatedByUser
{
@ObjectModel.text.element: [ 'UserDescription' ]
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.9
@Search.ranking: #HIGH
key User.UserID,
@Semantics.text: true
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.9
@EndUserText.label: 'Name'
User.UserDescription,
_BillingDocumentBasic
}
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