P_TaxRecon10
P_TaxRecon10 is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (bseg) and exposes 6 fields.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| bseg | bseg | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PTAXRECON10 | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.private | true | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| bukrs | bseg | bukrs | ||
| belnr | belnr | |||
| gjahr | gjahr | |||
| xmwsn | xmwsn | |||
| xskfn | xskfn | |||
| zbd1p | zbd1p |
@AbapCatalog.sqlViewName: 'PTAXRECON10'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.private:true
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
//this view delivers the dataset, if the discount base value is the net value
//requirement 11
define view P_TaxRecon10
as select from bseg
left outer to one join t001
on bseg.bukrs = t001.bukrs
{
bseg.bukrs,
belnr,
gjahr,
xmwsn,
xskfn,
zbd1p
}
where
zbd1p > 0
and xmwsn = 'X'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"BSEG",
"T001"
],
"ASSOCIATED":
[],
"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