I_BillOfMaterialStatusText

DDL: I_BILLOFMATERIALSTATUSTEXT SQL: IBOMSTATUSTEXT Type: view BASIC

Bill Of Material Status - Text

I_BillOfMaterialStatusText (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

BillOfMaterialStatusText · R&D Engineering

I_BillOfMaterialStatusText is a Basic CDS View that provides data about "Bill Of Material Status - Text" in SAP S/4HANA. It reads from 1 data source (t415t) and exposes 4 fields with key fields Language, BillOfMaterialStatus.

SAP API Hub

StateC1
Line of BusinessR&D Engineering
Application ComponentLO-MD-BOM
CapabilitiesLanguage-Dependent Text, Association Target for Defining CDS Entities, Data Source in SQL Select, Data Source for Defining CDS Entities, Data Source for Data Extraction
PackageR&D Engineering for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view retrieves bill of material status data. A bill of material status is a coded representation of the status of a bill of material (BOM). It is used in BOM processing and indicates the current processing stage of a BOM.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
t415t t415t from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IBOMSTATUSTEXT view
ObjectModel.dataCategory #TEXT view
Search.searchable true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey BillOfMaterialStatus view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Bill Of Material Status - Text view
Metadata.ignorePropagatedAnnotations true view
Analytics.dataExtraction.enabled true view
ObjectModel.sapObjectNodeType.name BillOfMaterialStatusText view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language spras Off. Language
_Language _Language
KEY BillOfMaterialStatus stlst Bill of Material Status
BillOfMaterialStatusText sttxt Description of BOM Status

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_BillOfMaterialStatusText.
-- 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: IBOMSTATUSTEXT

CREATE VIEW I_BillOfMaterialStatusText AS
SELECT
  spras AS Language,
  stlst AS BillOfMaterialStatus,
  sttxt AS BillOfMaterialStatusText
FROM t415t
;