I_BllbleCtrlBillgCtrlCatAssgmt

DDL: I_BLLBLECTRLBILLGCTRLCATASSGMT Type: view_entity BASIC

FETCH FROM TABLE TBILLGCTRLCAT

I_BllbleCtrlBillgCtrlCatAssgmt (Basic)

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

R&D Engineering

I_BllbleCtrlBillgCtrlCatAssgmt is a Basic CDS View that provides data about "FETCH FROM TABLE TBILLGCTRLCAT" in SAP S/4HANA. It reads from 1 data source (tbillgctrlcat) and exposes 3 fields with key field BillableControl. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for Project Billing
Purpose
This CDS view fetches data from table TBILLGCTRLCAT and provides information on whether a particular accounting indicator is Billable or Non-Billable. This CDS view provides the data to answer the following business questions: What are the billable controls associated with each billing control category? How can billing control categories be described in the system's language? Which billing control categories are linked to specific billable controls in the system? 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 BillableControl Accounting Indicator BillingControlCategory Billing Category

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessR&D Engineering
Application ComponentPPM-SCL-BIL
CapabilitiesData Source in SQL Select, Association Target for Defining CDS Entities, Data Source for Defining CDS Entities
PackageR&D Engineering for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
tbillgctrlcat tbillgctrlcat from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_BillingControlCategoryText _BillingControlCategoryText _BillingControlCategoryText.BillingControlCategory = $projection.BillingControlCategory and _BillingControlCategoryText.Language = $session.system_language

Annotations (11)

NameValueLevelField
EndUserText.label FETCH FROM TABLE TBILLGCTRLCAT view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.representativeKey BillableControl view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view
Analytics.technicalName IBILGCTRLCATASGMNT view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BillableControl bemot Accounting Indicator
BillingControlCategory billgctrlcat Billing Control Category
_BillingControlCategoryText _BillingControlCategoryText

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_BllbleCtrlBillgCtrlCatAssgmt.
-- 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.

CREATE VIEW I_BllbleCtrlBillgCtrlCatAssgmt AS
SELECT
  bemot AS BillableControl,
  billgctrlcat AS BillingControlCategory
FROM tbillgctrlcat
LEFT OUTER JOIN I_BillingControlCategoryText AS _BillingControlCategoryText ON _BillingControlCategoryText.BillingControlCategory = BillingControlCategory AND _BillingControlCategoryText.Language = $session.system_language  -- association [0..1]
;