I_ReferenceBillingPlanVH
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)
| Source | Alias | Join Type |
|---|---|---|
| fpla | fpla | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_BillingPlanTypeText | _BillingPlanTypeText | $projection.BillingPlanType = _BillingPlanTypeText.BillingPlanType |
Annotations (17)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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":""
}
}*/
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