I_BillOfOperationsSqncStdVH

DDL: I_BILLOFOPERATIONSSQNCSTDVH SQL: IBOOS__VH Type: view_entity COMPOSITE

Bill of Operations Sequence

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

Data Sources (1)

SourceAliasJoin Type
I_BillOfOperationsSequence I_BillOfOperationsSequence from

Annotations (10)

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

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY BillOfOperationsType BillOfOperationsType Task List Type
KEY BillOfOperationsGroup BillOfOperationsGroup Group
KEY BillOfOperationsVariant BillOfOperationsVariant Group Counter
KEY BillOfOperationsSequence BillOfOperationsSequence Sequence
_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_BillOfOperationsSqncStdVH.
-- 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: IBOOS__VH

CREATE VIEW I_BillOfOperationsSqncStdVH AS
SELECT
  BillOfOperationsType,
  BillOfOperationsGroup,
  BillOfOperationsVariant,
  BillOfOperationsSequence
FROM I_BillOfOperationsSequence
;