P_TaxRecon10

DDL: P_TAXRECON10 SQL: PTAXRECON10 Type: view BASIC

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)

SourceAliasJoin Type
bseg bseg from

Annotations (6)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/