I_FIXEDPEGGINGTEXT
Fixed Pegging text view
I_FIXEDPEGGINGTEXT is a CDS View in S/4HANA. Fixed Pegging text view. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| C_Fixedpeggingtemptext | view | from | CONSUMPTION | Fixed pegging text view |
@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'