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 2 fields. Part of development package VDM_PROJECTBILLINGELEMENT.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| EndUserText.label | Billing Methods | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| domvalue_lasBillingPlanUsageCategory | ||||
| BillingPlanUsageCategoryName | dd07t | ddtext |
//@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: #S
@ObjectModel.usageType.dataClass: #META
//@ClientHandling.algorithm: #SESSION_VARIABLE
//@ObjectModel : { resultSet.sizeCategory: #XS }
@EndUserText.label: 'Billing Methods'
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
//@AbapCatalog.preserveKey:true
define view entity I_BillingMethodVH
as select from dd07t
//association [0..*] to I_BillingPlanUsageCategoryText as _Text on $projection.BillingPlanUsageCategory = _Text.BillingPlanUsageCategoryName
{
@ObjectModel.text.element: ['BillingPlanUsageCategoryName']
--@ObjectModel.text.association: '_Text'
key dd07t.domvalue_l as BillingPlanUsageCategory,
@Semantics.text: true
dd07t.ddtext as BillingPlanUsageCategoryName
//_Text
}
where
domname = 'SDBP_BPCAT'
and as4local = 'A'
and as4vers = '0000'
and ddlanguage = $session.system_language
and domvalue_l <> ''
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