I_VASChargeCodeVH
Value Added Services Charge Code
I_VASChargeCodeVH is a Basic CDS View that provides data about "Value Added Services Charge Code" in SAP S/4HANA. It reads from 1 data source (fsh_chrge_code) and exposes 2 fields with key field VASChargeCode. It is exposed through 1 OData service (VASCOMBINATION). Part of development package RFM_VAS_DETERMINATION_RAP.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| fsh_chrge_code | fsh_chrge_code | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Value Added Services Charge Code | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.representativeKey | VASChargeCode | view | |
| Search.searchable | true | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| VASCOMBINATION | VASCOMBINATION | V4 | C1 | NOT_RELEASED |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | VASChargeCode | fsh_chrge_code | fsh_charge_code | Charge Code |
| VASChargeCodeText | fsh_chr_codet | fsh_chrg_code_desc | Description |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Value Added Services Charge Code'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #S,
dataClass: #MIXED
}
@ObjectModel.representativeKey: 'VASChargeCode'
@Search.searchable: true
@VDM.viewType:#BASIC
@ObjectModel.dataCategory: #VALUE_HELP
define view entity I_VASChargeCodeVH as select from fsh_chrge_code
left outer to one join fsh_chr_codet on fsh_chrge_code.fsh_charge_code = fsh_chr_codet.fsh_charge_code
and fsh_chr_codet.spras = $session.system_language
{
@EndUserText.label: 'Charge Code'
@Search.defaultSearchElement: true
@ObjectModel.text.element: [ 'VASChargeCodeText' ]
key fsh_chrge_code.fsh_charge_code as VASChargeCode,
@Semantics.text:true
@EndUserText.label: 'Description'
fsh_chr_codet.fsh_chrg_code_desc as VASChargeCodeText
}
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