I_TrdClassfctnNmbrSchmCntntTxt

DDL: I_TRDCLASSFCTNNMBRSCHMCNTNTTXT SQL: ITRDCLSNSCTXT Type: view BASIC Package: VDM_SLL_CLS

Numbering Scheme Content - Text

I_TrdClassfctnNmbrSchmCntntTxt is a Basic CDS View that provides data about "Numbering Scheme Content - Text" in SAP S/4HANA. It reads from 1 data source (/sapsll/dnosctt) and exposes 5 fields with key fields Language, TrdClassfctnNmbrSchmCntnt. It has 2 associations to related views. It is exposed through 11 OData services (ASQL_F2152, ASQL_F2155, ASQL_F2516, ...). Part of development package VDM_SLL_CLS.

Data Sources (1)

SourceAliasJoin Type
/sapsll/dnosctt /sapsll/dnosctt from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[0..1] I_TrdClassfctnNmbrSchmCntnt _TrdClassfctnNmbrSchmCntnt $projection.TrdClassfctnNmbrSchmCntnt = _TrdClassfctnNmbrSchmCntnt.TrdClassfctnNmbrSchmCntnt

Annotations (11)

NameValueLevelField
EndUserText.label Numbering Scheme Content - Text view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
AbapCatalog.sqlViewName ITRDCLSNSCTXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey TrdClassfctnNmbrSchmCntnt view
ObjectModel.usageType.sizeCategory M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable false view

OData Services (11)

ServiceBindingVersionContractRelease
ASQL_F2152 ASQL_F2152 C2 NOT_RELEASED
ASQL_F2155 ASQL_F2155 C2 NOT_RELEASED
ASQL_F2516 ASQL_F2516 C2 NOT_RELEASED
ASQL_F2517 ASQL_F2517 C2 NOT_RELEASED
ASQL_F2518 ASQL_F2518 C2 NOT_RELEASED
ASQL_F3122 ASQL_F3122 C2 NOT_RELEASED
ASQL_F3147 ASQL_F3147 C2 NOT_RELEASED
ASQL_F3429 ASQL_F3429 C2 NOT_RELEASED
ASQL_F3581 ASQL_F3581 C2 NOT_RELEASED
ASQL_F3582 ASQL_F3582 C2 NOT_RELEASED
UI_TRCMDTYCDMANAGE UI_TRCMDTYCDMANAGE V4 C1 NOT_RELEASED

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language langu Primary lang.
KEY TrdClassfctnNmbrSchmCntnt nosct No. Scheme Content
TrdClassfctnNmbrSchmCntntName text User Group
_Language _Language
_TrdClassfctnNmbrSchmCntnt _TrdClassfctnNmbrSchmCntnt

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_TrdClassfctnNmbrSchmCntntTxt.
-- 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: ITRDCLSNSCTXT

CREATE VIEW I_TrdClassfctnNmbrSchmCntntTxt AS
SELECT
  langu AS Language,
  nosct AS TrdClassfctnNmbrSchmCntnt,
  text AS TrdClassfctnNmbrSchmCntntName
FROM /sapsll/dnosctt
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_TrdClassfctnNmbrSchmCntnt AS _TrdClassfctnNmbrSchmCntnt ON TrdClassfctnNmbrSchmCntnt = _TrdClassfctnNmbrSchmCntnt.TrdClassfctnNmbrSchmCntnt  -- association [0..1]
;