I_BillingControlCategory

DDL: I_BILLINGCONTROLCATEGORY SQL: IBILLGCTRLCAT Type: view_entity BASIC

Billing Control Category

I_BillingControlCategory (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Billing Control Category · R&D Engineering

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

SAP Help Documentation

CategoryCDS Views for Project Billing
Data CategoryDimension
Purpose
This view provides supported values for BillingControlCategory. This CDS view provides the data to answer the following business questions: What are the available billing control categories? How can these billing control categories be described or labelled? To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations Users who want to use this CDS view don't need any special authorization. These restriction types are edited in the Maintain Business Roles app.

Structure
Important Fields Important fields in this view include the following: Field Name Description BillingControlCategory This field indicates costs that are billable or non-billable.

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessR&D Engineering
Application ComponentPS-REV
CapabilitiesAnalytical Dimension, Association Target for Defining CDS Entities
PackageR&D Engineering for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BillingControlCategoryText _Text _Text.BillingControlCategory = $projection.BillingControlCategory

Annotations (11)

NameValueLevelField
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Billing Control Category view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.representativeKey BillingControlCategory view
ObjectModel.sapObjectNodeType.name BillingControlCategory view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Analytics.dataCategory #DIMENSION view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY BillingControlCategory
_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_BillingControlCategory.
-- 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: IBILLGCTRLCAT

CREATE VIEW I_BillingControlCategory AS
SELECT
  substring( domvalue_l, 1, 8 ) AS BillingControlCategory
FROM dd07l
LEFT OUTER JOIN I_BillingControlCategoryText AS _Text ON _Text.BillingControlCategory = BillingControlCategory  -- association [0..*]
;