P_WhereUsdPrftCtrSystemStatus

DDL: P_WHEREUSDPRFTCTRSYSTEMSTATUS SQL: PWUPCSS Type: view CONSUMPTION

Object System Status WUL Profit Centers

P_WhereUsdPrftCtrSystemStatus is a Consumption CDS View that provides data about "Object System Status WUL Profit Centers" in SAP S/4HANA. It reads from 1 data source (I_StatusObjectStatusBasic) and exposes 7 fields with key fields StatusObject, StatusCode. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_StatusObjectStatusBasic I_StatusObjectStatusBasic from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_SystemStatus _SystemStatus $projection.StatusCode = _SystemStatus.SystemStatus

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PWUPCSS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.private true view
VDM.viewType #CONSUMPTION view
EndUserText.label Object System Status WUL Profit Centers view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY StatusObject StatusObject Status Object
KEY StatusCode StatusCode Statuscode
StatusIsInactive StatusIsInactive TRUE
StatusIsHidden _SystemStatus StatusIsHidden
SystemStatusName
SystemStatusShortName
_SystemStatus _SystemStatus

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 P_WhereUsdPrftCtrSystemStatus.
-- 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: PWUPCSS

CREATE VIEW P_WhereUsdPrftCtrSystemStatus AS
SELECT
  StatusObject,
  StatusCode,
  StatusIsInactive,
  _SystemStatus.StatusIsHidden AS StatusIsHidden,
  _SystemStatus._SystemStatusText[ 1: Language = $session.system_language ].SystemStatusName AS SystemStatusName,
  _SystemStatus._SystemStatusText[ 1: Language = $session.system_language ].SystemStatusShortName AS SystemStatusShortName
FROM I_StatusObjectStatusBasic
LEFT OUTER JOIN I_SystemStatus AS _SystemStatus ON StatusCode = _SystemStatus.SystemStatus  -- association [1..1]
;