A_BillOfMaterialUsage

DDL: A_BILLOFMATERIALUSAGE SQL: ABOMUSAGE Type: view BASIC

Usage

A_BillOfMaterialUsage is a Basic CDS View that provides data about "Usage" in SAP S/4HANA. It reads from 1 data source (I_BillOfMaterialUsage) and exposes 3 fields with key field BillOfMaterialVariantUsage. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_BillOfMaterialUsage I_BillOfMaterialUsage from

Associations (1)

CardinalityTargetAliasCondition
[0..1] A_BillOfMaterialUsageText _BillOfMaterialUsageText $projection.BillOfMaterialVariantUsage = _BillOfMaterialUsageText.BillOfMaterialVariantUsage and _BillOfMaterialUsageText.Language = $session.system_language

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ABOMUSAGE view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
ObjectModel.representativeKey BillOfMaterialVariantUsage view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
EndUserText.label Usage view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BillOfMaterialVariantUsage BillOfMaterialVariantUsage Usage
BillOfMaterialVariantUsageDesc _BillOfMaterialUsageText BillOfMaterialVariantUsageDesc Usage text
_BillOfMaterialUsageText _BillOfMaterialUsageText

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_BillOfMaterialUsage.
-- 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: ABOMUSAGE

CREATE VIEW A_BillOfMaterialUsage AS
SELECT
  BillOfMaterialVariantUsage,
  _BillOfMaterialUsageText.BillOfMaterialVariantUsageDesc AS BillOfMaterialVariantUsageDesc
FROM I_BillOfMaterialUsage
LEFT OUTER JOIN A_BillOfMaterialUsageText AS _BillOfMaterialUsageText ON BillOfMaterialVariantUsage = _BillOfMaterialUsageText.BillOfMaterialVariantUsage AND _BillOfMaterialUsageText.Language = $session.system_language  -- association [0..1]
;