C_BPTaxCodeTextValueHelp
tax code text value help
C_BPTaxCodeTextValueHelp is a Consumption CDS View that provides data about "tax code text value help" in SAP S/4HANA. It reads from 1 data source (I_TaxGroupingCodeText) and exposes 5 fields with key fields AccountType, Language, TaxGroupingCode. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_TaxGroupingCodeText | _TaxGroupingCodeText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CBPTAXCODETEXTVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| EndUserText.label | tax code text value help | view | |
| Search.searchable | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.representativeKey | TaxGroupingCode | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AccountType | |||
| KEY | Language | |||
| KEY | TaxGroupingCode | |||
| TaxCodeDescription | ||||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'CBPTAXCODETEXTVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #CONSUMPTION
@ObjectModel.dataCategory: #TEXT
@EndUserText.label: 'tax code text value help'
@Search.searchable: true
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.representativeKey: 'TaxGroupingCode'
define view C_BPTaxCodeTextValueHelp
as select from I_TaxGroupingCodeText as _TaxGroupingCodeText
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.text.element: 'Accounttype'
key cast(_TaxGroupingCodeText.AccountType as koart preserving type) as AccountType,
@Semantics.language: true
key cast(_TaxGroupingCodeText.Language as spras preserving type) as Language,
@Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
key cast(_TaxGroupingCodeText.TaxGroupingCode as taxgr preserving type) as TaxGroupingCode,
@Semantics.text: true
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
cast(_TaxGroupingCodeText.TaxGroupingCodeText as text30 preserving type) as TaxCodeDescription,
_Language
}
//where
// AccountType = 'K'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_TAXGROUPINGCODETEXT"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"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