C_Expirationdatetexttemp
Expiration date text
C_Expirationdatetexttemp is a Consumption CDS View that provides data about "Expiration date text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields ExpirationDate, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CEXPDATETEXT | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #CONSUMPTION | view | |
| VDM.lifecycle.status | #DEPRECATED | view | |
| VDM.lifecycle.successor | I_ProdExprtnDateCodeText | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Search.searchable | true | view | |
| ObjectModel.representativeKey | ExpirationDate | view | |
| EndUserText.label | Expiration date text | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| domname | ||||
| KEY | ExpirationDate | |||
| KEY | Language | |||
| Name | ||||
| DomainText | ddtext |
@AbapCatalog.sqlViewName: 'CEXPDATETEXT'
@ObjectModel.dataCategory: #TEXT
//@Analytics: { datacategory: #TEXT }
@VDM:{
viewType: #CONSUMPTION,
lifecycle: {
status: #DEPRECATED,
successor: 'I_ProdExprtnDateCodeText'
}
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Search.searchable: true
@ObjectModel.representativeKey: 'ExpirationDate'
@EndUserText.label: 'Expiration date text'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory : #S
@ObjectModel.usageType.dataClass: #MASTER
define view C_Expirationdatetexttemp
as select from dd07t
{
--key dd07t.domname,
key cast( domvalue_l as expirationdate) as ExpirationDate,
@Semantics.language:true
key cast( ddlanguage as spras preserving type ) as Language,
@Semantics.text: true
cast ( ddtext as val_text_desc preserving type ) as Name,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.7
@Search.ranking: #HIGH
@Consumption.hidden: true
ddtext as DomainText
}
where
domname = 'SLED_BBD'
and as4local = 'A'
and as4vers = '0000'
/*+[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