P_UtilitiesConsumptionList

DDL: P_UTILITIESCONSUMPTIONLIST SQL: PISUCONSLIST Type: view BASIC

P_UtilitiesConsumptionList is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (tisu_el_csmpt_br) and exposes 5 fields with key fields id, version, register, device.

Data Sources (1)

SourceAliasJoin Type
tisu_el_csmpt_br tisu_el_csmpt_br from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PISUCONSLIST view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.private true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY id id WorklistID
KEY version version XML Vers.
KEY register register Register
KEY device device Device
consider Consider

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_UtilitiesConsumptionList.
-- 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: PISUCONSLIST

CREATE VIEW P_UtilitiesConsumptionList AS
SELECT
  id,
  version,
  register,
  device,
  cast ( consider as boolean ) AS consider
FROM tisu_el_csmpt_br
;