P_PT_DocItemWhldgTx

DDL: P_PT_DOCITEMWHLDGTX SQL: PTDOCITEMWHLDGTX Type: view CONSUMPTION Package: GLO_FIN_IS_VAT_PT

Withholding Tax items

P_PT_DocItemWhldgTx is a Consumption CDS View that provides data about "Withholding Tax items" in SAP S/4HANA. It reads from 1 data source (P_PT_DocItemPartnerJoinWit) and exposes 29 fields with key fields AccountingDocument, CompanyCode, FiscalYear, AccountingDocumentItem. Part of development package GLO_FIN_IS_VAT_PT.

Data Sources (1)

SourceAliasJoin Type
P_PT_DocItemPartnerJoinWit P_PT_DocItemPartnerJoinWit from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName PTDOCITEMWHLDGTX view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #CONSUMPTION view
VDM.private true view
AbapCatalog.preserveKey true view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Withholding Tax items view

Fields (29)

KeyFieldSource TableSource FieldDescription
KEY AccountingDocument AccountingDocument Journal Entry
KEY CompanyCode CompanyCode Receiver Company Code
KEY FiscalYear FiscalYear G/L Fiscal Year
KEY AccountingDocumentItem AccountingDocumentItem Posting View Item
ClearingDate ClearingDate Clearing Date
PostingDate PostingDate Posting Date for GR
DocumentDate DocumentDate Journal Entry Date
Customer Customer Sold-to Party
Supplier Supplier Supplier
DebitCreditCode DebitCreditCode Single-Character Flag
WithholdingTaxCode WithholdingTaxCode WTax Code
BalanceTransactionCurrency BalanceTransactionCurrency Currency
curr232asWithholdingTaxAmount Withholding Tax Amt
TransactionCurrency TransactionCurrency Transaction Currency
IsSalesRelated IsSalesRelated Is Sales Related
IsUsedInPaymentTransaction IsUsedInPaymentTransaction Is Used In Payment Transaction
AmountInCompanyCodeCurrency AmountInCompanyCodeCurrency Local Crcy Amt
FinancialAccountType FinancialAccountType Fin. Account Type
CompanyCodeCurrency CompanyCodeCurrency Local Currency
SupplierVATRegistration SupplierVATRegistration VAT Registration No.
CustomerVATRegistration CustomerVATRegistration VAT Registration No.
OneTimeVendor OneTimeVendor
OneTimeCustomer OneTimeCustomer
VATRegistration VATRegistration VAT Registration No.
VATRegistrationCountry VATRegistrationCountry CtryRgnSlsTxNo.
SupplierVATRegistrationCountry SupplierVATRegistrationCountry
CustomerVATRegistrationCountry CustomerVATRegistrationCountry
ExchangeRate ExchangeRate Exchange rate
AccountingDocumentType AccountingDocumentType Journal Entry Type

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view P_PT_DocItemWhldgTx.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: PTDOCITEMWHLDGTX

CREATE VIEW P_PT_DocItemWhldgTx AS
SELECT
  AccountingDocument,
  CompanyCode,
  FiscalYear,
  AccountingDocumentItem,
  ClearingDate,
  PostingDate,
  DocumentDate,
  Customer,
  Supplier,
  DebitCreditCode,
  WithholdingTaxCode,
  BalanceTransactionCurrency,
  cast( case when ExchangeRate is initial or ExchangeRate = 0 or ExchangeRate is null then WithholdingTaxAmount when ExchangeRate > 0 then cast(WithholdingTaxAmount as abap.curr(23,2)) * cast(ExchangeRate as abap.dec( 9, 2 )) when ExchangeRate < 0 then division( cast(WithholdingTaxAmount as abap.curr(23,2)), (ExchangeRate * -1), 2) end as abap.curr(23,2)) as WithholdingTaxAmount AS curr232asWithholdingTaxAmount,
  TransactionCurrency,
  IsSalesRelated,
  IsUsedInPaymentTransaction,
  AmountInCompanyCodeCurrency,
  FinancialAccountType,
  CompanyCodeCurrency,
  SupplierVATRegistration,
  CustomerVATRegistration,
  OneTimeVendor,
  OneTimeCustomer,
  VATRegistration,
  VATRegistrationCountry,
  SupplierVATRegistrationCountry,
  CustomerVATRegistrationCountry,
  ExchangeRate,
  AccountingDocumentType
FROM P_PT_DocItemPartnerJoinWit
;