C_WhereUsdPrftCtrSystemStatus

DDL: C_WHEREUSDPRFTCTRSYSTEMSTATUS SQL: CWUPCSS Type: view CONSUMPTION

Object System Status WUL Profit Centers

C_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 (P_WhereUsdPrftCtrSystemStatus) and exposes 6 fields with key fields StatusObject, StatusCode.

Data Sources (1)

SourceAliasJoin Type
P_WhereUsdPrftCtrSystemStatus P_WhereUsdPrftCtrSystemStatus from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CWUPCSS 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.viewType #CONSUMPTION view
EndUserText.label Object System Status WUL Profit Centers view

Fields (6)

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

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_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: CWUPCSS

CREATE VIEW C_WhereUsdPrftCtrSystemStatus AS
SELECT
  StatusObject,
  StatusCode,
  StatusIsInactive,
  StatusIsHidden,
  SystemStatusName,
  SystemStatusShortName
FROM P_WhereUsdPrftCtrSystemStatus
;