I_Bpsddatecategoryname

DDL: I_BPSDDATECATEGORYNAME SQL: IBPSDDATECATNAME Type: view BASIC

Date Category Name

I_Bpsddatecategoryname is a Basic CDS View that provides data about "Date Category Name" in SAP S/4HANA. It reads from 1 data source (tfplu) and exposes 6 fields with key fields BillingPlanType, BillingPlanCategory, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
tfplu tfplu from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_Bpsddatecategory _BillingPlanCategory $projection.BillingPlanType = _BillingPlanCategory.BillingPlanType and $projection.BillingPlanCategory = _BillingPlanCategory.BillingPlanCategory
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (9)

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

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY BillingPlanType fpart Commitment Item Type
KEY BillingPlanCategory fpttp Object type
KEY Language spras Off. Language
BillingPlanCategoryName ttbez Date Category
_BillingPlanCategory _BillingPlanCategory
_Language _Language

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_Bpsddatecategoryname.
-- 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: IBPSDDATECATNAME

CREATE VIEW I_Bpsddatecategoryname AS
SELECT
  fpart AS BillingPlanType,
  fpttp AS BillingPlanCategory,
  spras AS Language,
  ttbez AS BillingPlanCategoryName
FROM tfplu
LEFT OUTER JOIN I_Bpsddatecategory AS _BillingPlanCategory ON BillingPlanType = _BillingPlanCategory.BillingPlanType AND BillingPlanCategory = _BillingPlanCategory.BillingPlanCategory  -- association [1..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;