I_BillingMethodVH
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)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_BillingPlanUsageCategoryText | _Text | $projection.BillingPlanUsageCategory = _Text.BillingPlanUsageCategoryName |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| 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 |
@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":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA