/APE/C_BOSTA_VH

DDL: /APE/C_BOSTA_VH Type: view CONSUMPTION

Business Object Status

/APE/C_BOSTA_VH is a Consumption CDS View that provides data about "Business Object Status" in SAP S/4HANA. It reads from 1 data source (/APE/C_BOStatus) and exposes 4 fields with key field BOStatusKey. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
/APE/C_BOStatus BOStatus from

Associations (1)

CardinalityTargetAliasCondition
[0..*] /APE/C_BOStatusText _Text _Text.ape_parent_key = $projection.BOStatusKey

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName /APE/C_BOSTAVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Business Object Status view
VDM.viewType #CONSUMPTION view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY BOStatusKey /APE/C_BOStatus config_key Char
ColorCode color_code Color Code
BOStatus /APE/C_BOStatus bo_status
BOStatusDescriptionISL

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 /APE/C_BOSTA_VH.
-- 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 /APE/C_BOSTA_VH AS
SELECT
  BOStatus.config_key AS BOStatusKey,
  color_code AS ColorCode,
  BOStatus.bo_status AS BOStatus,
  _Text[1: language = $session.system_language ].description AS BOStatusDescriptionISL
FROM /APE/C_BOStatus AS BOStatus
LEFT OUTER JOIN /APE/C_BOStatusText AS _Text ON _Text.ape_parent_key = BOStatusKey  -- association [0..*]
;