C_CapPlngOrderConfStatusVH

DDL: C_CAPPLNGORDERCONFSTATUSVH SQL: CCAPPLNGCNFSTSVH Type: view CONSUMPTION

Order Confirmation Status

C_CapPlngOrderConfStatusVH is a Consumption CDS View that provides data about "Order Confirmation Status" in SAP S/4HANA. It reads from 1 data source (I_SystemStatusText) and exposes 3 fields with key field SystemStatus.

Data Sources (1)

SourceAliasJoin Type
I_SystemStatusText I_SystemStatusText from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CCAPPLNGCNFSTSVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #VALUE_HELP view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
EndUserText.label Order Confirmation Status view
ObjectModel.resultSet.sizeCategory #XS view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SystemStatus SystemStatus System status
SystemStatusName SystemStatusName Text
SystemStatusShortName SystemStatusShortName Status

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 C_CapPlngOrderConfStatusVH.
-- 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: CCAPPLNGCNFSTSVH

CREATE VIEW C_CapPlngOrderConfStatusVH AS
SELECT
  SystemStatus,
  SystemStatusName,
  SystemStatusShortName
FROM I_SystemStatusText
;