I_BillingPlanMilestoneUsage

DDL: I_BILLINGPLANMILESTONEUSAGE SQL: IBPLANMLSTNUSAGE Type: view BASIC Package: VDM_SD_BIL_IV_BP

Billing Plan Milestone Usage

I_BillingPlanMilestoneUsage is a Basic CDS View (Dimension) that provides data about "Billing Plan Milestone Usage" in SAP S/4HANA. It reads from 1 data source (t433) and exposes 2 fields with key field UsageCode. It has 1 association to related views. Part of development package VDM_SD_BIL_IV_BP.

Data Sources (1)

SourceAliasJoin Type
t433 t433 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BillgPlnMilestoneUsageText _Text $projection.UsageCode = _Text.UsageCode

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName IBPLANMLSTNUSAGE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Billing Plan Milestone Usage view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
ObjectModel.representativeKey UsageCode view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Analytics.internalName #LOCAL view
Analytics.dataCategory #DIMENSION view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.resultSet.sizeCategory #XS view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY UsageCode mlstn Usage
_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_BillingPlanMilestoneUsage.
-- 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: IBPLANMLSTNUSAGE

CREATE VIEW I_BillingPlanMilestoneUsage AS
SELECT
  mlstn AS UsageCode
FROM t433
LEFT OUTER JOIN I_BillgPlnMilestoneUsageText AS _Text ON UsageCode = _Text.UsageCode  -- association [0..*]
;