C_Fixedpeggingtemptext
Fixed pegging text view
C_Fixedpeggingtemptext is a Consumption CDS View that provides data about "Fixed pegging text view" in SAP S/4HANA. It reads from 1 data source (I_FixedPeggingText) and exposes 4 fields with key fields IsFixedPeggingForProdRetained, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_FixedPeggingText | I_FixedPeggingText | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CFIXEDPEGGNGTXT | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #CONSUMPTION | view | |
| VDM.lifecycle.status | #DEPRECATED | view | |
| VDM.lifecycle.successor | I_FixedPeggingText | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | IsFixedPeggingForProdRetained | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| EndUserText.label | Fixed pegging text view | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| domname | ||||
| KEY | IsFixedPeggingForProdRetained | |||
| KEY | Language | |||
| Name |
@AbapCatalog.sqlViewName: 'CFIXEDPEGGNGTXT'
@ObjectModel.dataCategory: #TEXT
//@Analytics: { datacategory: #TEXT }
@VDM:{
viewType: #CONSUMPTION,
lifecycle: {
status: #DEPRECATED,
successor: 'I_FixedPeggingText'
}
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'IsFixedPeggingForProdRetained'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory : #M
@ObjectModel.usageType.dataClass: #MASTER
@EndUserText.label: 'Fixed pegging text view'
define view C_Fixedpeggingtemptext
as select from I_FixedPeggingText
{
--key dd07t.domname,
//key domvalue_l as IsFixedPeggingForProdRetained,
key cast(cast ( substring( FixedPegging, 1, 1 ) as abap.char( 1 ) ) as /sapapo/dm_fixpeg_prod_setting) as IsFixedPeggingForProdRetained,
@Semantics.language:true
key cast( Language as spras ) as Language,
@Semantics.text: true
cast ( substring ( FixedPeggingDesc, 1, 60 ) as val_text ) as Name
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_FIXEDPEGGINGTEXT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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