I_BillOfOperationsVersStdVH

DDL: I_BILLOFOPERATIONSVERSSTDVH SQL: IBOOV__VH Type: view_entity COMPOSITE Package: VDM_PP_MD_RTG

Bill of Operations Version

I_BillOfOperationsVersStdVH is a Composite CDS View that provides data about "Bill of Operations Version" in SAP S/4HANA. It reads from 1 data source (I_BillOfOperationsVersion) and exposes 7 fields with key fields BillOfOperationsType, BillOfOperationsGroup, BillOfOperationsVariant, BillOfOperationsVersion. Part of development package VDM_PP_MD_RTG.

Data Sources (1)

SourceAliasJoin Type
I_BillOfOperationsVersion I_BillOfOperationsVersion from

Annotations (10)

NameValueLevelField
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey BillOfOperationsVersion view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
AccessControl.authorizationCheck #CHECK view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
EndUserText.label Bill of Operations Version view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY BillOfOperationsType BillOfOperationsType Task List Type
KEY BillOfOperationsGroup BillOfOperationsGroup Group
KEY BillOfOperationsVariant BillOfOperationsVariant Group Counter
KEY BillOfOperationsVersion BillOfOperationsVersion Routing Version
_BillOfOperationsType _BillOfOperationsType
_BillOfOperationsGroup _BillOfOperationsGroup
_BillOfOperations _BillOfOperations

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_BillOfOperationsVersStdVH.
-- 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: IBOOV__VH

CREATE VIEW I_BillOfOperationsVersStdVH AS
SELECT
  BillOfOperationsType,
  BillOfOperationsGroup,
  BillOfOperationsVariant,
  BillOfOperationsVersion
FROM I_BillOfOperationsVersion
;