I_SubsequentListingText
Desc for Subsequent Listing
I_SubsequentListingText is a Basic CDS View that provides data about "Desc for Subsequent Listing" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields SubsequentListingIsActive, Language. Part of development package VDM_RFM_SITE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISUBSQLISTTEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | SubsequentListingIsActive | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| EndUserText.label | Desc for Subsequent Listing | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SubsequentListingIsActive | |||
| KEY | Language | |||
| SubsequentListingName |
@AbapCatalog.sqlViewName: 'ISUBSQLISTTEXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel: {
dataCategory: #TEXT,
representativeKey: 'SubsequentListingIsActive',
usageType: {
serviceQuality: #A,
sizeCategory: #M,
dataClass: #MASTER
}
}
@EndUserText.label: 'Desc for Subsequent Listing'
define view I_SubsequentListingText
as select from dd07t
{
@UI.selectionField.exclude: true
@ObjectModel.filter.enabled: false
@UI.hidden: true
@ObjectModel.text.element: [ 'SubsequentListingName' ]
key cast ( domvalue_l as nlmatfb ) as SubsequentListingIsActive,
@UI.selectionField.exclude: true
@ObjectModel.filter.enabled: false
@UI.hidden: true
@Semantics.language: true
key cast( ddlanguage as spras preserving type ) as Language,
@Semantics.text: true
@UI.selectionField.exclude: true
@ObjectModel.filter.enabled: false
@UI.hidden: true
cast ( ddtext as val_text ) as SubsequentListingName
}
where
domname = 'NLMATFB'
and ddlanguage = $session.system_language
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