I_AssortmentModuleText

DDL: I_ASSORTMENTMODULETEXT SQL: IASMMODTXT Type: view BASIC Package: RFM_ASSORTMENT_VDM

Assortment Module and Version - Text

I_AssortmentModuleText is a Basic CDS View that provides data about "Assortment Module and Version - Text" in SAP S/4HANA. It reads from 1 data source (rfm_asm_texts) and exposes 4 fields with key fields AssortmentModuleUUID, Language. It has 1 association to related views. Part of development package RFM_ASSORTMENT_VDM.

Data Sources (1)

SourceAliasJoin Type
rfm_asm_texts rfm_asm_texts from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_LanguageText _LanguageText _LanguageText.LanguageCode = $projection.Language and _LanguageText.Language = $session.system_language

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IASMMODTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label Assortment Module and Version - Text view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey AssortmentModuleUUID view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY AssortmentModuleUUID object_guid Recipe GUID
KEY Language language Report Text Language
AssortmentModuleObjectDesc text User Group
_LanguageText _LanguageText

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_AssortmentModuleText.
-- 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: IASMMODTXT

CREATE VIEW I_AssortmentModuleText AS
SELECT
  object_guid AS AssortmentModuleUUID,
  Language,
  text AS AssortmentModuleObjectDesc
FROM rfm_asm_texts
LEFT OUTER JOIN I_LanguageText AS _LanguageText ON _LanguageText.LanguageCode = Language AND _LanguageText.Language = $session.system_language  -- association [0..1]
;