I_TaxGroupingCode
Groupings for tax codes
I_TaxGroupingCode is a Basic CDS View (Cube) that provides data about "Groupings for tax codes" in SAP S/4HANA. It reads from 1 data source (t007c) and exposes 9 fields with key fields AccountType, TaxGroupingCode. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t007c | t007c | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..*] | I_TaxGroupingCodeText | _Codetext | $projection.AccountType = _Codetext.Accounttype and $projection.TaxGroupingCode = _Codetext.TaxGroupingCode |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Groupings for tax codes | view | |
| VDM.viewType | #BASIC | view | |
| Analytics.dataCategory | #CUBE | view | |
| Analytics.technicalName | ITXGRPCODE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Analytics.internalName | #LOCAL | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| Metadata.allowExtensions | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AccountType | koart | ||
| KEY | TaxGroupingCode | taxgr | ||
| TaxCategoryIsRequiredInValHelp | warng | |||
| ExemptionIsPossible | wrnex | |||
| FinAccountingConditionType | ksch1 | |||
| VATConditionType | kschl | |||
| ReferenceConditionType | refkschl | |||
| TaxConditionIsLikeVAT | isvat | |||
| _Codetext | _Codetext |
@EndUserText.label: 'Groupings for tax codes'
@VDM.viewType: #BASIC
@Analytics.dataCategory: #CUBE
@Analytics.technicalName: 'ITXGRPCODE'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.internalName:#LOCAL
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@Metadata.allowExtensions:true
@ObjectModel.supportedCapabilities: [ #CDS_MODELING_ASSOCIATION_TARGET]
@Metadata.ignorePropagatedAnnotations:true
define view entity I_TaxGroupingCode
as select from t007c
association [1..*] to I_TaxGroupingCodeText as _Codetext on $projection.AccountType = _Codetext.Accounttype
and $projection.TaxGroupingCode = _Codetext.TaxGroupingCode
{
key koart as AccountType,
key taxgr as TaxGroupingCode,
warng as TaxCategoryIsRequiredInValHelp,
wrnex as ExemptionIsPossible,
ksch1 as FinAccountingConditionType,
kschl as VATConditionType,
refkschl as ReferenceConditionType,
isvat as TaxConditionIsLikeVAT,
_Codetext
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T007C"
],
"ASSOCIATED":
[
"I_TAXGROUPINGCODETEXT"
],
"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