I_ChangeDocUser
Vor- und Nachname Benutzer
I_ChangeDocUser is a Basic CDS View (Dimension) that provides data about "Vor- und Nachname Benutzer" in SAP S/4HANA. It reads from 1 data source (P_UserAddress002) and exposes 3 fields with key fields Client, UserName.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_UserAddress002 | P_UserAddress002 | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IBCCHANGEUSER | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Vor- und Nachname Benutzer | view | |
| ClientDependent | true | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | UserName | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Client | mandt | ||
| KEY | UserName | bname | Benutzername | |
| NAME_TEXTC | NAME_TEXTC |
@AbapCatalog.sqlViewName: 'IBCCHANGEUSER'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Vor- und Nachname Benutzer'
@ClientDependent: true
@Analytics.dataCategory: #DIMENSION
@Analytics.dataExtraction.enabled: true
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'UserName'
define view I_ChangeDocUser
as select from P_UserAddress002
{
key mandt as Client,
@EndUserText.label: 'Benutzername'
key bname as UserName,
@Semantics.text: true
// @UI.hidden: true
// @Consumption.filter.hidden: true
// @EndUserText.label: 'Angelegt von'
NAME_TEXTC
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"P_USERADDRESS002"
],
"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