I_NominationScheduleUserText
Trip created by user value help
I_NominationScheduleUserText is a Basic CDS View that provides data about "Trip created by user value help" in SAP S/4HANA. It reads from 2 data sources (I_User, adrp) and exposes 2 fields with key field NominationSchedUserID.
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | INOMSCHEDUSERT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| Search.searchable | true | view | |
| AbapCatalog.preserveKey | true | view | |
| EndUserText.label | Trip created by user value help | view | |
| ObjectModel.representativeKey | NominationSchedUserID | view |
@AbapCatalog.sqlViewName: 'INOMSCHEDUSERT'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #BASIC
@AccessControl: { authorizationCheck: #NOT_REQUIRED,
personalData.blocking: #NOT_REQUIRED }
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel:{
usageType.serviceQuality: #A,
usageType.sizeCategory: #L,
usageType.dataClass: #TRANSACTIONAL,
dataCategory: #TEXT
}
@Search.searchable: true
@AbapCatalog.preserveKey:true
@EndUserText.label: 'Trip created by user value help'
@ObjectModel.representativeKey: 'NominationSchedUserID'
define view I_NominationScheduleUserText
as select from I_User as _User
left outer join adrp as _UserAddress on _UserAddress.persnumber = _User.AddressPersonID
{
@Search: { defaultSearchElement: true, ranking: #MEDIUM }
@ObjectModel.text.element:[ 'NominationSchedUserName']
key _User.UserID as NominationSchedUserID,
@Semantics.text: true
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.7 }
@EndUserText.quickInfo: 'Nomination Schedule User Name'
_UserAddress.name_text as NominationSchedUserName
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_USER",
"ADRP"
],
"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