I_BillOfOperationsStdVH

DDL: I_BILLOFOPERATIONSSTDVH SQL: IBOO__VH Type: view COMPOSITE

Bill of Operations

I_BillOfOperationsStdVH is a Composite CDS View that provides data about "Bill of Operations" in SAP S/4HANA. It reads from 1 data source (I_BillOfOperations) and exposes 5 fields with key fields BillOfOperationsType, BillOfOperationsGroup, BillOfOperationsVariant.

Data Sources (1)

SourceAliasJoin Type
I_BillOfOperations I_BillOfOperations from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IBOO__VH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey BillOfOperationsVariant view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
Consumption.ranked true view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Bill of Operations view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY BillOfOperationsType BillOfOperationsType Task List Type
KEY BillOfOperationsGroup BillOfOperationsGroup Group
KEY BillOfOperationsVariant BillOfOperationsVariant Group Counter
_BillOfOperationsType _BillOfOperationsType
_BillOfOperationsGroup _BillOfOperationsGroup

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_BillOfOperationsStdVH.
-- 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: IBOO__VH

CREATE VIEW I_BillOfOperationsStdVH AS
SELECT
  BillOfOperationsType,
  BillOfOperationsGroup,
  BillOfOperationsVariant
FROM I_BillOfOperations
;