PiqCdsModuleCategoryText

DDL: PIQCDSMODULECATEGORYTEXT SQL: PIQCDSMODCATTXT Type: view

Module Category Text

PiqCdsModuleCategoryText is a CDS View that provides data about "Module Category Text" in SAP S/4HANA. It reads from 1 data source (t7piqcategoryt) and exposes 4 fields with key fields Language, CATEGORY. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
t7piqcategoryt t7piqcategoryt from

Associations (1)

CardinalityTargetAliasCondition
[0..1] PiqCdsModuleCategory _ModuleCategory $projection.CATEGORY = _ModuleCategory.CATEGORY

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName PIQCDSMODCATTXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Module Category Text view
ClientDependent true view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #X view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language spras Off. Language
KEY CATEGORY category Violation Category
StudyModuleCategoryName categoryt ModGrpCat.(Ds.)
_ModuleCategory _ModuleCategory

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 PiqCdsModuleCategoryText.
-- 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: PIQCDSMODCATTXT

CREATE VIEW PiqCdsModuleCategoryText AS
SELECT
  spras AS Language,
  CATEGORY,
  categoryt AS StudyModuleCategoryName
FROM t7piqcategoryt
LEFT OUTER JOIN PiqCdsModuleCategory AS _ModuleCategory ON CATEGORY = _ModuleCategory.CATEGORY  -- association [0..1]
;