I_ReferenceBillingPlanVH

DDL: I_REFERENCEBILLINGPLANVH SQL: IREFBPLANVH Type: view BASIC

Reference Billing Plan

I_ReferenceBillingPlanVH is a Basic CDS View that provides data about "Reference Billing Plan" in SAP S/4HANA. It reads from 1 data source (fpla) and exposes 4 fields with key field BillingPlan. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
fpla fpla from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BillingPlanTypeText _BillingPlanTypeText $projection.BillingPlanType = _BillingPlanTypeText.BillingPlanType

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName IREFBPLANVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.internalName #LOCAL view
ClientHandling.algorithm #SESSION_VARIABLE view
Consumption.ranked true view
EndUserText.label Reference Billing Plan view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey BillingPlan view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
ObjectModel.dataCategory #VALUE_HELP view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY BillingPlan Invoicing plan
BillingPlanSearchTerm sortl Sort Term
BillingPlanType fpart Commitment Item Type
_BillingPlanTypeText _BillingPlanTypeText

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_ReferenceBillingPlanVH.
-- 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: IREFBPLANVH

CREATE VIEW I_ReferenceBillingPlanVH AS
SELECT
  cast( fplnr as tds_bplan_id_rap preserving type ) AS BillingPlan,
  sortl AS BillingPlanSearchTerm,
  fpart AS BillingPlanType
FROM fpla
LEFT OUTER JOIN I_BillingPlanTypeText AS _BillingPlanTypeText ON BillingPlanType = _BillingPlanTypeText.BillingPlanType  -- association [0..*]
;