A_BillOfMaterialUsageText

DDL: A_BILLOFMATERIALUSAGETEXT SQL: ABOMUSAGETEXT Type: view BASIC

Usage Description

A_BillOfMaterialUsageText is a Basic CDS View that provides data about "Usage Description" in SAP S/4HANA. It reads from 1 data source (I_BillOfMaterialUsageText) and exposes 3 fields with key fields Language, BillOfMaterialVariantUsage.

Data Sources (1)

SourceAliasJoin Type
I_BillOfMaterialUsageText I_BillOfMaterialUsageText from

Annotations (13)

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

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language Language Report Text Language
KEY BillOfMaterialVariantUsage BillOfMaterialVariantUsage Usage
BillOfMaterialVariantUsageDesc BillOfMaterialVariantUsageDesc Usage text

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_BillOfMaterialUsageText.
-- 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: ABOMUSAGETEXT

CREATE VIEW A_BillOfMaterialUsageText AS
SELECT
  Language,
  BillOfMaterialVariantUsage,
  BillOfMaterialVariantUsageDesc
FROM I_BillOfMaterialUsageText
;