I_Bpsddatecategory

DDL: I_BPSDDATECATEGORY SQL: IBPSDDATECAT Type: view BASIC

Billing Plan Date Category

I_Bpsddatecategory is a Basic CDS View that provides data about "Billing Plan Date Category" in SAP S/4HANA. It reads from 1 data source (tfplt) and exposes 3 fields with key fields BillingPlanType, BillingPlanCategory. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
tfplt tfplt from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_Bpsddatecategoryname _Text $projection.BillingPlanCategory = _Text.BillingPlanCategory and $projection.BillingPlanType = _Text.BillingPlanType

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IBPSDDATECAT view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Billing Plan Date Category view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #MIXED view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BillingPlanType fpart Commitment Item Type
KEY BillingPlanCategory fpttp Object type
_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_Bpsddatecategory.
-- 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: IBPSDDATECAT

CREATE VIEW I_Bpsddatecategory AS
SELECT
  fpart AS BillingPlanType,
  fpttp AS BillingPlanCategory
FROM tfplt
LEFT OUTER JOIN I_Bpsddatecategoryname AS _Text ON BillingPlanCategory = _Text.BillingPlanCategory AND BillingPlanType = _Text.BillingPlanType  -- association [0..*]
;