I_BillingMethodVH

DDL: I_BILLINGMETHODVH SQL: IBILLMETHODVH Type: view BASIC

Billing Methods

I_BillingMethodVH is a Basic CDS View that provides data about "Billing Methods" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key field BillingPlanUsageCategory. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BillingPlanUsageCategoryText _Text $projection.BillingPlanUsageCategory = _Text.BillingPlanUsageCategoryName

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IBILLMETHODVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Billing Methods view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AbapCatalog.preserveKey true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BillingPlanUsageCategory dd07t domvalue_l Lower Value
BillingPlanUsageCategoryName dd07t ddtext Short text
_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_BillingMethodVH.
-- 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: IBILLMETHODVH

CREATE VIEW I_BillingMethodVH AS
SELECT
  dd07t.domvalue_l AS BillingPlanUsageCategory,
  dd07t.ddtext AS BillingPlanUsageCategoryName
FROM dd07t
LEFT OUTER JOIN I_BillingPlanUsageCategoryText AS _Text ON BillingPlanUsageCategory = _Text.BillingPlanUsageCategoryName  -- association [0..*]
;