I_ProductSeasonStatusText
ProductSeasonStatus - Text
I_ProductSeasonStatusText is a Basic CDS View that provides data about "ProductSeasonStatus - Text" in SAP S/4HANA. It reads from 1 data source (dd07v) and exposes 3 fields with key field ProductSeasonStatus. Part of development package VDM_RFM_SEASON.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07v | TextProvider | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | ProductSeasonStatus - Text | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| AbapCatalog.sqlViewName | IPRODUCTSSTATUS | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProductSeasonStatus | |||
| ddlanguageasLanguage | ||||
| ddtextasProductSeasonStatusText |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'ProductSeasonStatus - Text'
@AbapCatalog.compiler.compareFilter:true
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #S,
dataClass: #MIXED
}
@AbapCatalog.sqlViewName: 'IPRODUCTSSTATUS'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_ProductSeasonStatusText
as select from dd07v as TextProvider
{
@ObjectModel.text.element: [ 'ProductSeasonStatusText' ]
key cast ( TextProvider.domvalue_l as char1 ) as ProductSeasonStatus,
@Semantics.language: true -- identifies the language
key TextProvider.ddlanguage as Language,
@Semantics.text: true -- identifies the first text field for names
TextProvider.ddtext as ProductSeasonStatusText
}
where
domname = 'RFM_PRODUCTSEASONSTATUS'
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