I_FixedPeggingText
Fixed Pegging text view
I_FixedPeggingText is a Basic CDS View that provides data about "Fixed Pegging text view" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields FixedPegging, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFIXEDPEGGINGTXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | FixedPegging | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| EndUserText.label | Fixed Pegging text view | view | |
| Search.searchable | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | FixedPegging | |||
| KEY | Language | |||
| FixedPeggingDesc |
@AbapCatalog.sqlViewName: 'IFIXEDPEGGINGTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'FixedPegging'
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory : #M
@ObjectModel.usageType.dataClass: #MASTER
@EndUserText.label: 'Fixed Pegging text view'
@Search.searchable: true
define view I_FixedPeggingText
as select from dd07t
{
// key cast(cast ( substring( domvalue_l, 1, 1 ) as abap.char( 1 ) ) as /sapapo/dm_fixpeg_prod_setting) as FixedPegging,
key cast( cast( domvalue_l as abap.char( 1 ) ) as /sapapo/dm_fixpeg_prod_setting) as FixedPegging,
@Semantics.language:true
key cast( ddlanguage as spras ) as Language,
@Semantics.text: true
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
// cast ( substring ( ddtext, 1, 60 ) as val_text ) as FixedPeggingDesc
cast ( ddtext as val_text preserving type ) as FixedPeggingDesc
}
where
domname = '/SAPAPO/DM_FIXPEG_PROD_SETTING'
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