I_BillingPlanItemUsageText

DDL: I_BILLINGPLANITEMUSAGETEXT Type: view BASIC Package: VDM_SD_BIL_IV_BP

Billing Plan Item Usage Text

I_BillingPlanItemUsageText is a Basic CDS View that provides data about "Billing Plan Item Usage Text" in SAP S/4HANA. It reads from 1 data source (sdbp_itm_usage_t) and exposes 7 fields with key fields Language, BillingPlanUsageCategory, BillingPlanItemUsage. It has 3 associations to related views. It is exposed through 1 OData service (ASQL_F6869). Part of development package VDM_SD_BIL_IV_BP.

Data Sources (1)

SourceAliasJoin Type
sdbp_itm_usage_t sdbp_itm_usage_t from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[0..1] I_BillingPlanItemUsage _BillingPlanItemUsage $projection.BillingPlanUsageCategory = _BillingPlanItemUsage.BillingPlanUsageCategory and $projection.BillingPlanItemUsage = _BillingPlanItemUsage.BillingPlanItemUsage
[0..1] I_BillgPlnUsgeCat_2 _BillingPlanUsageCategory $projection.BillingPlanUsageCategory = _BillingPlanUsageCategory.BillingPlanUsageCategory

Annotations (14)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey BillingPlanItemUsage view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
AbapCatalog.sqlViewName ISDBPITMUSAGET view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Billing Plan Item Usage Text view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F6869 ASQL_F6869 C2 NOT_RELEASED

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Language langu Primary lang.
KEY BillingPlanUsageCategory bpcat Plan category
KEY BillingPlanItemUsage item_usage Usage
BillingPlanItemUsageName item_usage_text Text
_Language _Language
_BillingPlanUsageCategory _BillingPlanUsageCategory
_BillingPlanItemUsage _BillingPlanItemUsage

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_BillingPlanItemUsageText.
-- 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.

CREATE VIEW I_BillingPlanItemUsageText AS
SELECT
  langu AS Language,
  bpcat AS BillingPlanUsageCategory,
  item_usage AS BillingPlanItemUsage,
  item_usage_text AS BillingPlanItemUsageName
FROM sdbp_itm_usage_t
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_BillingPlanItemUsage AS _BillingPlanItemUsage ON BillingPlanUsageCategory = _BillingPlanItemUsage.BillingPlanUsageCategory AND BillingPlanItemUsage = _BillingPlanItemUsage.BillingPlanItemUsage  -- association [0..1]
LEFT OUTER JOIN I_BillgPlnUsgeCat_2 AS _BillingPlanUsageCategory ON BillingPlanUsageCategory = _BillingPlanUsageCategory.BillingPlanUsageCategory  -- association [0..1]
;