I_BillableControl

DDL: I_BILLABLECONTROL SQL: IFIBILLABCTRL Type: view BASIC

Billable Control

I_BillableControl is a Basic CDS View (Dimension) that provides data about "Billable Control" in SAP S/4HANA. It reads from 1 data source (tbmot) and exposes 2 fields with key field BillableControl. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
tbmot tbmot from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BillableControlText _Text $projection.BillableControl = _Text.BillableControl

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IFIBILLABCTRL view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Billable Control view
ClientHandling.algorithm #SESSION_VARIABLE view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey BillableControl view
ObjectModel.sapObjectNodeType.name BillableControl view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY BillableControl AcctIndicator
_Text _Text

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 I_BillableControl.
-- 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: IFIBILLABCTRL

CREATE VIEW I_BillableControl AS
SELECT
  cast( bemot as fis_bemot preserving type ) AS BillableControl
FROM tbmot
LEFT OUTER JOIN I_BillableControlText AS _Text ON BillableControl = _Text.BillableControl  -- association [0..*]
;