C_ABOPRunStatusText

DDL: C_ABOPRUNSTATUSTEXT Type: view_entity CONSUMPTION

BOP Run For Status - Text

C_ABOPRunStatusText is a Consumption CDS View that provides data about "BOP Run For Status - Text" in SAP S/4HANA. It reads from 1 data source (I_DomainFixedValue) and exposes 3 fields with key fields ATPCheckStatus, Language.

Data Sources (1)

SourceAliasJoin Type
I_DomainFixedValue I_DomainFixedValue from

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label BOP Run For Status - Text view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey ATPCheckStatus view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.resultSet.sizeCategory #XS view
Search.searchable true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ATPCheckStatus Lower Value
KEY Language
ATPCheckStatusText

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 C_ABOPRunStatusText.
-- 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 C_ABOPRunStatusText AS
SELECT
  cast( DomainValue as atp_bop_run_status ) AS ATPCheckStatus,
  cast(_DomainFixedValueText.Language as spras preserving type) AS Language,
  _DomainFixedValueText[1: Language = $session.system_language].DomainText AS ATPCheckStatusText
FROM I_DomainFixedValue
;