I_ListedSubstanceDefNameCust
Default Name in All Languages for Customer LiSu
I_ListedSubstanceDefNameCust is a Basic CDS View that provides data about "Default Name in All Languages for Customer LiSu" in SAP S/4HANA. It reads from 1 data source (ehfndd_lisu_name) and exposes 5 fields with key fields ListedSubstanceUUID, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ehfndd_lisu_name | LisuName | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Default Name in All Languages for Customer LiSu | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | ListedSubstanceUUID | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AbapCatalog.sqlViewName | ILISUDEFCUS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.dataCategory | #TEXT | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ListedSubstanceUUID | |||
| KEY | Language | ehfndd_lisu_name | language | |
| ListedSubstance | ehfndd_lisu_name | listsub_id | ||
| Sequence | ehfndd_lisu_name | sequence_number | ||
| ListedSubstanceName | ehfndd_lisu_name | text |
@EndUserText.label: 'Default Name in All Languages for Customer LiSu'
@Analytics.dataExtraction.enabled: true
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'ListedSubstanceUUID'
@AccessControl.authorizationCheck: #CHECK
@AbapCatalog: {
sqlViewName: 'ILISUDEFCUS',
compiler.compareFilter: true,
preserveKey: true
}
// Client handling by session
@ClientHandling.algorithm: #SESSION_VARIABLE
// used for BOBF Master Data Object
@ObjectModel.usageType:{ serviceQuality: #C, // < 15 msec
sizeCategory: #L, // < 10.000.000
dataClass: #MASTER }
@ObjectModel.dataCategory: #TEXT
define view I_ListedSubstanceDefNameCust
as select from ehfndd_lisu_name as LisuName
join P_LstdSubstPrimNameKey as MinKey on LisuName.listsub_id = MinKey.listsub_id
and LisuName.language = MinKey.language
and LisuName.sequence_number = MinKey.MinSequence
{
key cast( LisuName.parent_key as ehfnd_lisu_key_nce preserving type ) as ListedSubstanceUUID,
@Semantics.language: true
key LisuName.language as Language,
// ID
LisuName.listsub_id as ListedSubstance,
LisuName.sequence_number as Sequence,
LisuName.text as ListedSubstanceName
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"P_LSTDSUBSTPRIMNAMEKEY",
"EHFNDD_LISU_NAME"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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