Deprecated
This CDS view is deprecated in S/4HANA. Use I_ProdExprtnDateCodeText instead. View all deprecated CDS views →

C_Expirationdatetexttemp

DDL: C_EXPIRATIONDATETEXTTEMP SQL: CEXPDATETEXT Type: view CONSUMPTION

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)

SourceAliasJoin Type
dd07t dd07t from

Annotations (12)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
domname
KEY ExpirationDate Lower Value
KEY Language Lang.
Name Short text
DomainText ddtext Short text

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view C_Expirationdatetexttemp.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: CEXPDATETEXT

CREATE VIEW C_Expirationdatetexttemp AS
SELECT
  cast( domvalue_l as expirationdate) AS ExpirationDate,
  cast( ddlanguage as spras preserving type ) AS Language,
  cast ( ddtext as val_text_desc preserving type ) AS Name,
  ddtext AS DomainText
FROM dd07t
;