I_LstdSubstPrimNameTxt

DDL: I_LSTDSUBSTPRIMNAMETXT SQL: ISUBLISURINAMT Type: view COMPOSITE

Listed Substance Primary Name View

I_LstdSubstPrimNameTxt is a Composite CDS View that provides data about "Listed Substance Primary Name View" in SAP S/4HANA. It reads from 1 data source (I_ListedSubstanceDefaultName) and exposes 5 fields with key fields ListedSubstanceUUID, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ListedSubstanceDefaultName ListedSubDefaultName from

Associations (1)

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

Annotations (14)

NameValueLevelField
EndUserText.label Listed Substance Primary Name View view
AccessControl.authorizationCheck #CHECK view
AbapCatalog.sqlViewName ISUBLISURINAMT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ListedSubstanceUUID view
UI.presentationVariant.sortOrder.by ListedSubstanceName view
UI.presentationVariant.sortOrder.direction #ASC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ListedSubstanceUUID I_ListedSubstanceDefaultName ListedSubstanceUUID Listed Substance
KEY Language I_ListedSubstanceDefaultName Language Report Text Language
LanguageISOCode _Language LanguageISOCode Language ISO Code
ListedSubstanceName
_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_LstdSubstPrimNameTxt.
-- 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: ISUBLISURINAMT

CREATE VIEW I_LstdSubstPrimNameTxt AS
SELECT
  ListedSubDefaultName.ListedSubstanceUUID AS ListedSubstanceUUID,
  ListedSubDefaultName.Language AS Language,
  _Language.LanguageISOCode AS LanguageISOCode,
  cast(ListedSubDefaultName.ListedSubstanceName as ehfnd_lisu_name_text_f preserving type) AS ListedSubstanceName
FROM I_ListedSubstanceDefaultName AS ListedSubDefaultName
LEFT OUTER JOIN I_Language AS _Language ON _Language.Language = Language  -- association [0..1]
;