C_ChangeRecordMasterRcpVH

DDL: C_CHANGERECORDMASTERRCPVH SQL: CMASTERRCPVH Type: view CONSUMPTION

Master Recipe Value Help

C_ChangeRecordMasterRcpVH is a Consumption CDS View that provides data about "Master Recipe Value Help" in SAP S/4HANA. It reads from 1 data source (I_BillOfOperations) and exposes 6 fields with key fields BillOfOperationsGroup, BillOfOperationsType, BillOfOperationsVariant.

Data Sources (1)

SourceAliasJoin Type
I_BillOfOperations _BillOfOperations from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CMASTERRCPVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
EndUserText.label Master Recipe Value Help view
ObjectModel.representativeKey BillOfOperationsGroup view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.preserveKey true view
Search.searchable true view
ObjectModel.dataCategory #VALUE_HELP view
Consumption.ranked true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY BillOfOperationsGroup Recipe Group
KEY BillOfOperationsType I_BillOfOperations BillOfOperationsType Task List Type
KEY BillOfOperationsVariant I_BillOfOperations BillOfOperationsVariant Recipe
ResponsiblePlannerGroup
BillOfOperationsUsage
IsMarkedForDeletion I_BillOfOperations IsMarkedForDeletion Purch.org. data

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_ChangeRecordMasterRcpVH.
-- 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: CMASTERRCPVH

CREATE VIEW C_ChangeRecordMasterRcpVH AS
SELECT
  cast(_BillOfOperations.BillOfOperationsGroup as r_plnnr preserving type) AS BillOfOperationsGroup,
  _BillOfOperations.BillOfOperationsType AS BillOfOperationsType,
  _BillOfOperations.BillOfOperationsVariant AS BillOfOperationsVariant,
  _BillOfOperations._BillOfOperationsChangeState[1: ValidityStartDate <= $session.system_date and ValidityEndDate >= $session.system_date].ResponsiblePlannerGroup AS ResponsiblePlannerGroup,
  _BillOfOperations._BillOfOperationsChangeState[1: ValidityStartDate <= $session.system_date and ValidityEndDate >= $session.system_date].BillOfOperationsUsage AS BillOfOperationsUsage,
  _BillOfOperations.IsMarkedForDeletion AS IsMarkedForDeletion
FROM I_BillOfOperations AS _BillOfOperations
;