PiqCdsModuleCategory

DDL: PIQCDSMODULECATEGORY SQL: PIQCDSMODULCATEG Type: view

Module Category

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

Data Sources (1)

SourceAliasJoin Type
t7piqcategory t7piqcategory from

Associations (1)

CardinalityTargetAliasCondition
[0..*] PiqCdsModuleCategoryText _ModuleCategoryText $projection.CATEGORY = _ModuleCategoryText.CATEGORY

Annotations (8)

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

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CATEGORY category Violation Category
_ModuleCategoryText _ModuleCategoryText

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 PiqCdsModuleCategory.
-- 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: PIQCDSMODULCATEG

CREATE VIEW PiqCdsModuleCategory AS
SELECT
  CATEGORY
FROM t7piqcategory
LEFT OUTER JOIN PiqCdsModuleCategoryText AS _ModuleCategoryText ON CATEGORY = _ModuleCategoryText.CATEGORY  -- association [0..*]
;