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
BillingPlanSearchTerm sortl
BillingPlanType fpart
_BillingPlanTypeText _BillingPlanTypeText
@AbapCatalog.sqlViewName: 'IREFBPLANVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.internalName: #LOCAL
@ClientHandling.algorithm: #SESSION_VARIABLE
@Consumption.ranked: true
@EndUserText.label: 'Reference Billing Plan'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel:{
  representativeKey: 'BillingPlan',
  usageType:{
    sizeCategory: #S,
    dataClass: #TRANSACTIONAL,
    serviceQuality: #A
  }
}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #VALUE_HELP
define root view I_ReferenceBillingPlanVH as select from fpla 
     association [0..*] to I_BillingPlanTypeText as _BillingPlanTypeText on $projection.BillingPlanType = _BillingPlanTypeText.BillingPlanType
{

       @Search.defaultSearchElement: true
       @Search.ranking: #HIGH
  key  cast( fplnr as tds_bplan_id_rap preserving type ) as BillingPlan,
  
       @Search.defaultSearchElement: true
       @Search.ranking: #MEDIUM
       @Search.fuzzinessThreshold: 0.8
       sortl as BillingPlanSearchTerm,
      
       @Search.defaultSearchElement: true
       @Search.ranking: #LOW
       @ObjectModel.text.association: '_BillingPlanTypeText'
       fpart as BillingPlanType,
       
       _BillingPlanTypeText
       
       
  
}
where sortl <> '' and fptyp = '0' and vbeln = ''
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"FPLA"
],
"ASSOCIATED":
[
"I_BILLINGPLANTYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/