C_SLEDRundngRuleTextTemp
Rounding rule for SLED text
C_SLEDRundngRuleTextTemp is a Consumption CDS View that provides data about "Rounding rule for SLED text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields ShelfLifeExprtnDateRndingRule, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CSLEDTEXT | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #CONSUMPTION | view | |
| VDM.lifecycle.status | #DEPRECATED | view | |
| VDM.lifecycle.successor | I_ShelfLifeExprtnDteRndngRuTxt | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Search.searchable | true | view | |
| ObjectModel.representativeKey | ShelfLifeExprtnDateRndingRule | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| EndUserText.label | Rounding rule for SLED text | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| domname | ||||
| KEY | ShelfLifeExprtnDateRndingRule | |||
| KEY | Language | |||
| Name | ||||
| DomainText | ddtext |
@AbapCatalog.sqlViewName: 'CSLEDTEXT'
@ObjectModel.dataCategory: #TEXT
@VDM:{
viewType: #CONSUMPTION,
lifecycle: {
status: #DEPRECATED,
successor: 'I_ShelfLifeExprtnDteRndngRuTxt'
}
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Search.searchable: true
@ObjectModel.representativeKey: 'ShelfLifeExprtnDateRndingRule'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory : #S
@ObjectModel.usageType.dataClass: #MASTER
@EndUserText.label: 'Rounding rule for SLED text'
define view C_SLEDRundngRuleTextTemp
as select from dd07t
{
--key dd07t.domname,
key cast( cast ( substring( domvalue_l, 1, 1 ) as abap.char( 1 ) ) as shelflifeexprtndaterndingrule) as ShelfLifeExprtnDateRndingRule,
@Semantics.language:true
key cast( ddlanguage as spras ) as Language,
@Semantics.text: true
cast ( substring ( ddtext, 1, 60 ) as field_description preserving type ) as Name,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@Consumption.hidden: true
ddtext as DomainText
}
where
domname = 'RDMHD'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"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