I_SalesDistributionStatusText
I view for TVMST
I_SalesDistributionStatusText is a Basic CDS View that provides data about "I view for TVMST" in SAP S/4HANA. It reads from 1 data source (tvmst) and exposes 3 fields with key fields ProductSalesStatus, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tvmst | tvmst | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISLSDISTRBTNT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | I view for TVMST | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | ProductSalesStatus | view | |
| Search.searchable | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProductSalesStatus | _SalesDistributionStatusText | vmsta | |
| KEY | Language | _SalesDistributionStatusText | spras | |
| ProductSalesStatusDescription | _SalesDistributionStatusText | vmstb |
@AbapCatalog.sqlViewName: 'ISLSDISTRBTNT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'I view for TVMST'
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'ProductSalesStatus'
@Search.searchable: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #CUSTOMIZING
define view I_SalesDistributionStatusText as select from tvmst _SalesDistributionStatusText
{
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
key _SalesDistributionStatusText.vmsta as ProductSalesStatus,
@Semantics.language: true
key _SalesDistributionStatusText.spras as Language,
@Semantics.text
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
_SalesDistributionStatusText.vmstb as ProductSalesStatusDescription
}
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