I_TrdClassfctnNmbrText

DDL: I_TRDCLASSFCTNNMBRTEXT SQL: ITRDCLSNMBRTXT Type: view BASIC

Number Text

I_TrdClassfctnNmbrText is a Basic CDS View that provides data about "Number Text" in SAP S/4HANA. It reads from 2 data sources (I_TrdClassfctnNmbrSchmCntnt, /sapsll/clsnrt) and exposes 14 fields with key fields TrdClassfctnNmbrSchmCntnt, TrdClassfctnNmbr, ValidityStartDate, TrdClassfctnNmbrTextType, Language. It has 5 associations to related views.

Data Sources (2)

SourceAliasJoin Type
I_TrdClassfctnNmbrSchmCntnt _Content inner
/sapsll/clsnrt /sapsll/clsnrt from

Associations (5)

CardinalityTargetAliasCondition
[0..1] I_TrdClassfctnNmbrSchmCntnt _TrdClassfctnNmbrSchmCntnt $projection.TrdClassfctnNmbrSchmCntnt = _TrdClassfctnNmbrSchmCntnt.TrdClassfctnNmbrSchmCntnt
[0..1] I_TrdClassfctnNmbr _TrdClassfctnNmbr $projection.TrdClassfctnNmbrSchmCntnt = _TrdClassfctnNmbr.TrdClassfctnNmbrSchmCntnt and $projection.TrdClassfctnNmbr = _TrdClassfctnNmbr.TrdClassfctnNmbr and $projection.ValidityStartDate = _TrdClassfctnNmbr.ValidityStartDate
[0..1] I_TrdClassfctnNmbrTextType _TrdClassfctnNmbrTextType $projection.TrdClassfctnNmbrTextType = _TrdClassfctnNmbrTextType.TrdClassfctnNmbrTextType
[0..1] I_Language _Language $projection.Language = _Language.Language
[0..1] I_CalendarDate _Date $projection.ValidityStartDate = _Date.CalendarDate

Annotations (11)

NameValueLevelField
EndUserText.label Number Text view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
AbapCatalog.sqlViewName ITRDCLSNMBRTXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey TrdClassfctnNmbr view
ObjectModel.usageType.sizeCategory L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
Search.searchable true view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY TrdClassfctnNmbrSchmCntnt nosct No. Scheme Content
KEY TrdClassfctnNmbr ccngn Number
KEY ValidityStartDate datab Validity period
KEY TrdClassfctnNmbrTextType ctstt Text Type TarSy
KEY Language langu Primary lang.
ValidityEndDate datbi Validity period
TrdClassfctnNmbrName text User Group
TrdClassfctnNmbrText text User Group
TrdClassfctnNmbrSchmType I_TrdClassfctnNmbrSchmCntnt TrdClassfctnNmbrSchmType No. Scheme Type
_TrdClassfctnNmbrSchmCntnt _TrdClassfctnNmbrSchmCntnt
_TrdClassfctnNmbr _TrdClassfctnNmbr
_TrdClassfctnNmbrTextType _TrdClassfctnNmbrTextType
_Date _Date
_Language _Language

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 I_TrdClassfctnNmbrText.
-- 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: ITRDCLSNMBRTXT

CREATE VIEW I_TrdClassfctnNmbrText AS
SELECT
  nosct AS TrdClassfctnNmbrSchmCntnt,
  ccngn AS TrdClassfctnNmbr,
  datab AS ValidityStartDate,
  ctstt AS TrdClassfctnNmbrTextType,
  langu AS Language,
  datbi AS ValidityEndDate,
  text AS TrdClassfctnNmbrName,
  text AS TrdClassfctnNmbrText,
  _Content.TrdClassfctnNmbrSchmType AS TrdClassfctnNmbrSchmType
FROM /sapsll/clsnrt
INNER JOIN I_TrdClassfctnNmbrSchmCntnt AS _Content ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_TrdClassfctnNmbrSchmCntnt AS _TrdClassfctnNmbrSchmCntnt ON TrdClassfctnNmbrSchmCntnt = _TrdClassfctnNmbrSchmCntnt.TrdClassfctnNmbrSchmCntnt  -- association [0..1]
LEFT OUTER JOIN I_TrdClassfctnNmbr AS _TrdClassfctnNmbr ON TrdClassfctnNmbrSchmCntnt = _TrdClassfctnNmbr.TrdClassfctnNmbrSchmCntnt AND TrdClassfctnNmbr = _TrdClassfctnNmbr.TrdClassfctnNmbr AND ValidityStartDate = _TrdClassfctnNmbr.ValidityStartDate  -- association [0..1]
LEFT OUTER JOIN I_TrdClassfctnNmbrTextType AS _TrdClassfctnNmbrTextType ON TrdClassfctnNmbrTextType = _TrdClassfctnNmbrTextType.TrdClassfctnNmbrTextType  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_CalendarDate AS _Date ON ValidityStartDate = _Date.CalendarDate  -- association [0..1]
;