I_MDImportUser
Users of Import
I_MDImportUser is a Basic CDS View that provides data about "Users of Import" in SAP S/4HANA. It reads from 2 data sources (user_addrp, mdc_import) and exposes 3 fields with key field MasterDataImportCreator.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| user_addrp | _username | left_outer |
| mdc_import | imp_user | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMDC_IMP_USER | view | |
| EndUserText.label | Users of Import | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | MasterDataImportCreator | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MasterDataImportCreator | masterdataimportcreator | ||
| MasterDataImportObjectTypeCode | masterdataimportobjecttypecode | |||
| CreatedByUserName |
@AbapCatalog.sqlViewName: 'IMDC_IMP_USER'
@EndUserText.label: 'Users of Import'
@VDM.viewType: #BASIC
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'MasterDataImportCreator'
define view I_MDImportUser
as select from mdc_import as imp_user
left outer join user_addrp as _username on bname = imp_user.masterdataimportcreator
{
@ObjectModel.text.element: 'CreatedByUserName'
key masterdataimportcreator as MasterDataImportCreator,
masterdataimportobjecttypecode as MasterDataImportObjectTypeCode,
@Semantics.text: true
concat( concat( _username.name_text, ' (' ), concat( masterdataimportcreator, ')' ) ) as CreatedByUserName
}
group by
masterdataimportcreator,
masterdataimportobjecttypecode,
_username.name_text
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"MDC_IMPORT",
"USER_ADDRP"
],
"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