I_UtilsPortnDfltBdgtBillgCyc

DDL: I_UTILSPORTNDFLTBDGTBILLGCYC SQL: IEBDGTBILLGCYC Type: view BASIC

Default Budget Billing Cycle of Portion

I_UtilsPortnDfltBdgtBillgCyc (Basic)

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

Utilities Portion Default Budget Billing Cycle · Utilities

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

SAP Help Documentation

CategoryInvoicing
Data CategoryDimension
StatusC1
Purpose
This CDS view retrieves data for the field ABSZYKTER (Budget Billing Cycle in Months). The allowed values are: 00 - No budget billing amounts are levied 01 - Budget billing amounts are levied at monthly intervals 02 - Budget billing amounts are levied at two-monthly intervals 03 - Budget billing amounts are levied at three-monthly intervals 04 - Budget billing amounts are levied at four-monthly intervals 06 - Budget billing amounts are levied at six-monthly intervals 12 - Annual payer, only one budget billing amount is levied

Prerequisites
Authorizations Not applicable.

Structure
Important fields in this view include the following: Field Name Description UtilsDefaultBdgtBillgCycle Budget Billing Cycle (in Months)

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessUtilities
Application ComponentIS-U-BI
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 ABSZYKTER (Budget Billing Cycle in Months).</p> <p>The allowed values are:</p> <ul> <li><p>00 - No budget billing amounts are levied</p></li> <li><p>01 - Budget billing amounts are levied at monthly intervals</p></li> <li><p>02 - Budget billing amounts are levied at two-monthly intervals</p></li> <li><p>03 - Budget billing amounts are levied at three-monthly intervals</p></li> <li><p>04 - Budget billing amounts are levied at four-monthly intervals</p></li> <li><p>06 - Budget billing amounts are levied at six-monthly intervals</p></li> <li><p>12 - Annual payer, only one budget billing amount is levied</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_UtilsPortnDfltBdgtBillgCycT _Text $projection.UtilsDefaultBdgtBillgCycle = _Text.UtilsDefaultBdgtBillgCycle

Annotations (15)

NameValueLevelField
EndUserText.label Default Budget Billing Cycle of Portion view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IEBDGTBILLGCYC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #META view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
Metadata.ignorePropagatedAnnotations true view
Analytics.dataExtraction.enabled true view
ObjectModel.representativeKey UtilsDefaultBdgtBillgCycle view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.sapObjectNodeType.name UtilsPortnDfltBdgtBillgCyc view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY UtilsDefaultBdgtBillgCycle Budget Billing Cycle
_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_UtilsPortnDfltBdgtBillgCyc.
-- 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: IEBDGTBILLGCYC

CREATE VIEW I_UtilsPortnDfltBdgtBillgCyc AS
SELECT
  cast(substring( dd07l.domvalue_l, 1, 2 ) as e_abszykter_vdm preserving type) AS UtilsDefaultBdgtBillgCycle
FROM dd07l
LEFT OUTER JOIN I_UtilsPortnDfltBdgtBillgCycT AS _Text ON UtilsDefaultBdgtBillgCycle = _Text.UtilsDefaultBdgtBillgCycle  -- association [0..*]
;