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

C_SLEDRundngRuleTextTemp

DDL: C_SLEDRUNDNGRULETEXTTEMP SQL: CSLEDTEXT Type: view CONSUMPTION

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)

SourceAliasJoin Type
dd07t dd07t from

Annotations (12)

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

KeyFieldSource TableSource FieldDescription
domname
KEY ShelfLifeExprtnDateRndingRule
KEY Language Lang.
Name
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_SLEDRundngRuleTextTemp.
-- 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: CSLEDTEXT

CREATE VIEW C_SLEDRundngRuleTextTemp AS
SELECT
  cast( cast ( substring( domvalue_l, 1, 1 ) as abap.char( 1 ) ) as shelflifeexprtndaterndingrule) AS ShelfLifeExprtnDateRndingRule,
  cast( ddlanguage as spras ) AS Language,
  cast ( substring ( ddtext, 1, 60 ) as field_description preserving type ) AS Name,
  ddtext AS DomainText
FROM dd07t
;