A_BOMItmObjDpnAssignment

DDL: A_BOMITMOBJDPNASSIGNMENT Type: view_entity COMPOSITE

BOM Item Object Dependency Assignment

A_BOMItmObjDpnAssignment is a Composite CDS View that provides data about "BOM Item Object Dependency Assignment" in SAP S/4HANA. It reads from 1 data source (R_BOMItmObjDpnAssignmentTP) and exposes 12 fields with key fields BillOfMaterial, BillOfMaterialCategory, BillOfMaterialVariant, BillOfMaterialVersion, HeaderChangeDocument.

Data Sources (1)

SourceAliasJoin Type
R_BOMItmObjDpnAssignmentTP R_BOMItmObjDpnAssignmentTP projection

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label BOM Item Object Dependency Assignment view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view
OData.entitySet.name MBOMItmObjDpnAssignment view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY BillOfMaterial BillOfMaterial BOM
KEY BillOfMaterialCategory BillOfMaterialCategory BOM category
KEY BillOfMaterialVariant BillOfMaterialVariant AlternativeBOM
KEY BillOfMaterialVersion BillOfMaterialVersion BOM Version
KEY HeaderChangeDocument HeaderChangeDocument Change Number
KEY Material Material Vehicle Model
KEY Plant Plant Valuation Area
KEY BillOfMaterialItemNodeNumber BillOfMaterialItemNodeNumber Item node
KEY ObjectDependencyName ObjectDependencyName
ObjDpnProcessingSequenceValue ObjDpnProcessingSequenceValue
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo

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 A_BOMItmObjDpnAssignment.
-- 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.

CREATE VIEW A_BOMItmObjDpnAssignment AS
SELECT
  BillOfMaterial,
  BillOfMaterialCategory,
  BillOfMaterialVariant,
  BillOfMaterialVersion,
  HeaderChangeDocument,
  Material,
  Plant,
  BillOfMaterialItemNodeNumber,
  ObjectDependencyName,
  ObjDpnProcessingSequenceValue,
  ValidityStartDate,
  ValidityEndDate
FROM R_BOMItmObjDpnAssignmentTP
;