C_ChangeRecordInspPlanMatVH

DDL: C_CHANGERECORDINSPPLANMATVH SQL: CINSPPLNMATVH Type: view CONSUMPTION

Inspection Plan Value Help by Material

C_ChangeRecordInspPlanMatVH is a Consumption CDS View that provides data about "Inspection Plan Value Help by Material" in SAP S/4HANA. It reads from 1 data source (I_BillOfOperations) and exposes 7 fields with key fields Material, Plant, BillOfOperationsGroup, BillOfOperationsVariant, BillOfOperationsType.

Data Sources (1)

SourceAliasJoin Type
I_BillOfOperations _BillOfOperations from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CINSPPLNMATVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
EndUserText.label Inspection Plan Value Help by Material 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

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Material _BOOMaterialAssgmtChangeState Material Material
KEY Plant _BOOMaterialAssgmtChangeState Plant Valuation Area
KEY BillOfOperationsGroup Group
KEY BillOfOperationsVariant BillOfOperationsVariant Group Counter
KEY BillOfOperationsType BillOfOperationsType Task List Type
BillOfOperationsUsage
_BOOMaterialAssgmtChangeState _BOOMaterialAssgmtChangeState

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_ChangeRecordInspPlanMatVH.
-- 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: CINSPPLNMATVH

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