I_BOOMaterialAssignmentStdVH

DDL: I_BOOMATERIALASSIGNMENTSTDVH SQL: IBOOMA__VH Type: view_entity COMPOSITE

Material assgmt. to Bill of Operations

I_BOOMaterialAssignmentStdVH is a Composite CDS View that provides data about "Material assgmt. to Bill of Operations" in SAP S/4HANA. It reads from 1 data source (I_BOOMaterialAssignment) and exposes 11 fields with key fields Material, Plant, BillOfOperationsType, BillOfOperationsGroup, BillOfOperationsVariant.

Data Sources (1)

SourceAliasJoin Type
I_BOOMaterialAssignment I_BOOMaterialAssignment from

Annotations (10)

NameValueLevelField
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey BOOToMaterialInternalID 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 Material assgmt. to Bill of Operations view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY Material Material Vehicle Model
KEY Plant Plant Valuation Area
KEY BillOfOperationsType BillOfOperationsType Task List Type
KEY BillOfOperationsGroup BillOfOperationsGroup Group
KEY BillOfOperationsVariant BillOfOperationsVariant Group Counter
KEY BOOToMaterialInternalID BOOToMaterialInternalID Add. Crit. Cntr
_Material _Material
_Plant _Plant
_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_BOOMaterialAssignmentStdVH.
-- 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: IBOOMA__VH

CREATE VIEW I_BOOMaterialAssignmentStdVH AS
SELECT
  Material,
  Plant,
  BillOfOperationsType,
  BillOfOperationsGroup,
  BillOfOperationsVariant,
  BOOToMaterialInternalID
FROM I_BOOMaterialAssignment
;