I_BillOfMaterialStatusText

DDL: I_BILLOFMATERIALSTATUSTEXT SQL: IBOMSTATUSTEXT Type: view BASIC Package: CS_MODEL

Bill Of Material Status - Text

I_BillOfMaterialStatusText (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public 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. Part of development package CS_MODEL.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessR&D Engineering
Application ComponentLO-MD-BOM-2CL
CapabilitiesData Source for Data Extraction,Language-Dependent Text,Association Target for Defining CDS Entities,Data Source in SQL Select,Data Source for Defining CDS Entities
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageR&D/Engineering for SAP S/4HANA Cloud Public Edition

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
;