C_ProdnHoldRelReasonCodeVH

DDL: C_PRODNHOLDRELREASONCODEVH SQL: CPHRRCVH Type: view CONSUMPTION

Release Reason Code Value Help

C_ProdnHoldRelReasonCodeVH is a Consumption CDS View that provides data about "Release Reason Code Value Help" in SAP S/4HANA. It reads from 1 data source (I_MfgActionReasonCode) and exposes 7 fields with key fields MfgActionReasonCodeGroupCtlg, MfgActionReasonCodeGroup, ManufacturingActionReasonCode, Version.

Data Sources (1)

SourceAliasJoin Type
I_MfgActionReasonCode code from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CPHRRCVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey ManufacturingActionReasonCode view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.resultSet.sizeCategory #XS view
VDM.viewType #CONSUMPTION view
EndUserText.label Release Reason Code Value Help view
Search.searchable true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY MfgActionReasonCodeGroupCtlg I_MfgActionReasonCode MfgActionReasonCodeGroupCtlg Catalog
KEY MfgActionReasonCodeGroup I_MfgActionReasonCode MfgActionReasonCodeGroup Code Group
KEY ManufacturingActionReasonCode I_MfgActionReasonCode ManufacturingActionReasonCode Water Hazard Cl.
KEY Version I_MfgActionReasonCode Version XML Vers.
MfgActionReasonCodeName
_Catalog _Catalog
_Group _Group

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_ProdnHoldRelReasonCodeVH.
-- 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: CPHRRCVH

CREATE VIEW C_ProdnHoldRelReasonCodeVH AS
SELECT
  code.MfgActionReasonCodeGroupCtlg AS MfgActionReasonCodeGroupCtlg,
  code.MfgActionReasonCodeGroup AS MfgActionReasonCodeGroup,
  code.ManufacturingActionReasonCode AS ManufacturingActionReasonCode,
  code.Version AS Version,
  _Text[1: Language=$session.system_language].MfgActionReasonCodeName AS MfgActionReasonCodeName
FROM I_MfgActionReasonCode AS code
;