I_CapEvalCapacityRqmtStsVH

DDL: I_CAPEVALCAPACITYRQMTSTSVH SQL: ICAPEVALRQMTSTS Type: view BASIC

Capacity requirement status

I_CapEvalCapacityRqmtStsVH is a Basic CDS View that provides data about "Capacity requirement status" in SAP S/4HANA. It reads from 2 data sources (dd07l, dd07t) and exposes 4 fields with key fields CapacityRequirementStatusCode, Language. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
dd07l _dd07l from
dd07t _dd07t inner

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language _dd07t.ddlanguage = _Language.Language

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICAPEVALRQMTSTS view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Capacity requirement status view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
ObjectModel.dataCategory #VALUE_HELP view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CapacityRequirementStatusCode dd07t domvalue_l Lower Value
KEY Language dd07t ddlanguage Lang.
CapacityRequirementStatusText dd07t ddtext Short text
_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_CapEvalCapacityRqmtStsVH.
-- 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: ICAPEVALRQMTSTS

CREATE VIEW I_CapEvalCapacityRqmtStsVH AS
SELECT
  _dd07t.domvalue_l AS CapacityRequirementStatusCode,
  _dd07t.ddlanguage AS Language,
  _dd07t.ddtext AS CapacityRequirementStatusText
FROM dd07l AS _dd07l
INNER JOIN dd07t AS _dd07t ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_Language AS _Language ON _dd07t.ddlanguage = _Language.Language  -- association [0..1]
;