P_SRVCBillableControl

DDL: P_SRVCBILLABLECONTROL SQL: ISRVCIBILLABCTRL Type: view CONSUMPTION

Billable Control

P_SRVCBillableControl is a Consumption CDS View that provides data about "Billable Control" in SAP S/4HANA. It reads from 1 data source (I_BillableControlText) and exposes 1 field with key field BillableControl.

Data Sources (1)

SourceAliasJoin Type
I_BillableControlText I_BillableControlText from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ISRVCIBILLABCTRL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Billable Control view
VDM.private true view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY BillableControl

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_SRVCBillableControl.
-- 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: ISRVCIBILLABCTRL

CREATE VIEW P_SRVCBillableControl AS
SELECT
  max(BillableControl) AS BillableControl
FROM I_BillableControlText
;