I_UtilsActvBdgtBillgProced

DDL: I_UTILSACTVBDGTBILLGPROCED SQL: IEUABDGTBLLGPRC Type: view BASIC

Active Budget Billing Procedure

I_UtilsActvBdgtBillgProced (Basic)

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

UtilsBudgetBillingProcedure · Utilities

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

SAP Help Documentation

CategoryInvoicing
Data CategoryDimension
StatusC1
Purpose
This CDS view retrieves data for the field KZABSVER (Activate Budget Billing Procedure). Admissible values are: 0 - No Budget Billing Collection 1 - Statistical Procedure for Budget Billing Collection 2 - Partial Bill Procedure for Budget Billing Amounts 3 - Payment Plan Procedure 4 - Payment Scheme 5 - Non Residential Customer Procedure

Prerequisites
Authorizations Not applicable.

Structure
Important fields in this view include the following: Field Name Description UtilsActvBudgetBillgProcedure Utilities Active Budget Billing Procedure

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessUtilities
Application ComponentIS-U-IN
CapabilitiesData Source in SQL Select, Analytical Dimension, Association Target for Defining CDS Entities, Data Source for Defining CDS Entities, Data Source for Data Extraction
PackageUtilities for SAP S/4HANA
Description <p>This CDS view retrieves data for the field KZABSVER (Activate Budget Billing Procedure).</p> <p>Admissible values are:</p> <ul> <li><p>0 - No Budget Billing Collection</p></li> <li><p>1 - Statistical Procedure for Budget Billing Collection</p></li> <li><p>2 - Partial Bill Procedure for Budget Billing Amounts</p></li> <li><p>3 - Payment Plan Procedure</p></li> <li><p>4 - Payment Scheme</p></li> <li><p>5 - Non Residential Customer Procedure</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_UtilsActvBdgtBillgProcedText _Text $projection.UtilsActvBudgetBillgProcedure = _Text.UtilsActvBudgetBillgProcedure

Annotations (15)

NameValueLevelField
EndUserText.label Active Budget Billing Procedure view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IEUABDGTBLLGPRC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey UtilsActvBudgetBillgProcedure view
AbapCatalog.compiler.compareFilter true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Analytics.dataExtraction.enabled true view
ObjectModel.sapObjectNodeType.name UtilsBudgetBillingProcedure view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY UtilsActvBudgetBillgProcedure Active Budget Billing Procedure
_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_UtilsActvBdgtBillgProced.
-- 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: IEUABDGTBLLGPRC

CREATE VIEW I_UtilsActvBdgtBillgProced AS
SELECT
  cast(substring(dd07l.domvalue_l, 1, 1) as e_kzabsver_vdm preserving type) AS UtilsActvBudgetBillgProcedure
FROM dd07l
LEFT OUTER JOIN I_UtilsActvBdgtBillgProcedText AS _Text ON UtilsActvBudgetBillgProcedure = _Text.UtilsActvBudgetBillgProcedure  -- association [0..*]
;