I_BillingMethodVH

DDL: I_BILLINGMETHODVH SQL: IBILLMETHODVH Type: view BASIC

Billing Methods

I_BillingMethodVH is a Basic CDS View that provides data about "Billing Methods" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key field BillingPlanUsageCategory. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BillingPlanUsageCategoryText _Text $projection.BillingPlanUsageCategory = _Text.BillingPlanUsageCategoryName

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IBILLMETHODVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Billing Methods view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AbapCatalog.preserveKey true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BillingPlanUsageCategory dd07t domvalue_l
BillingPlanUsageCategoryName dd07t ddtext
_Text _Text
@AbapCatalog.sqlViewName: 'IBILLMETHODVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #MASTER
@ClientHandling.algorithm: #SESSION_VARIABLE
//@ObjectModel : { resultSet.sizeCategory: #XS }

@EndUserText.label: 'Billing Methods'
@VDM.lifecycle.contract.type:  #SAP_INTERNAL_API
@AbapCatalog.preserveKey:true

define view I_BillingMethodVH
  as select from dd07t
  association [0..*] to I_BillingPlanUsageCategoryText as _Text on $projection.BillingPlanUsageCategory = _Text.BillingPlanUsageCategoryName                                                          
{

      @ObjectModel.text.element : ['BillingPlanUsageCategory']
      @ObjectModel.text.association: '_Text'
  key dd07t.domvalue_l as BillingPlanUsageCategory,
      @Semantics : { text : true }
      dd07t.ddtext     as BillingPlanUsageCategoryName,
      _Text
     // _Text[1:Language =  $session.system_language].BillingPlanUsageCategoryName as BillingPlanUsageCategoryName

}
where
  (
        dd07t.domname    = 'SDBP_BPCAT'
    and dd07t.ddlanguage =   $session.system_language   //'E'

    and dd07t.domvalue_l <> ''
  )
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_BILLINGPLANUSAGECATEGORYTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/