US_TaxPartnerTaxDocument

DDL: US_TAXPARTNERTAXDOCUMENT Type: view_entity

US TaxPartnerTaxDocument

US_TaxPartnerTaxDocument is a CDS View that provides data about "US TaxPartnerTaxDocument" in SAP S/4HANA. It reads from 1 data source (etxdch) and exposes 11 fields with key field US_TaxPartnerTaxDocument. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
etxdch etxdch from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_CompanyCode _CompanyCode $projection.CompanyCode = _CompanyCode.CompanyCode
[0..1] I_AccountingDocument _AccountingDocument $projection.AccountingDocument = _AccountingDocument.AccountingDocument and $projection.CompanyCode = _AccountingDocument.CompanyCode and $projection.FiscalYear = _AccountingDocument.FiscalYear
[0..1] I_Currency _TransactionCurrency $projection.TransactionCurrency = _TransactionCurrency.Currency

Annotations (5)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label US TaxPartnerTaxDocument view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY US_TaxPartnerTaxDocument
ReferenceDocument etxdch awref Reference Doc.
ReferenceDocumentType
CompanyCode
AccountingDocument
FiscalYear
US_TaxPartnerTaxTransaction
TransactionCurrency
_AccountingDocument _AccountingDocument
_CompanyCode _CompanyCode
_TransactionCurrency _TransactionCurrency

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 US_TaxPartnerTaxDocument.
-- 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.

CREATE VIEW US_TaxPartnerTaxDocument AS
SELECT
  cast(etxdch.docnr as fis_externaltaxdocument preserving type) AS US_TaxPartnerTaxDocument,
  etxdch.awref AS ReferenceDocument,
  cast(etxdch.awtyp as fis_awtyp preserving type) AS ReferenceDocumentType,
  cast(etxdch.comp_code as fis_bukrs preserving type) AS CompanyCode,
  cast(etxdcf.belnr as farp_belnr_d preserving type) AS AccountingDocument,
  cast(etxdcf.gjahr as fis_gjahr_no_conv preserving type) AS FiscalYear,
  cast(etxdch.tid as fis_etxdc_ukey preserving type) AS US_TaxPartnerTaxTransaction,
  cast(etxdch.currency as fis_rwcur preserving type) AS TransactionCurrency
FROM etxdch
LEFT OUTER JOIN I_CompanyCode AS _CompanyCode ON CompanyCode = _CompanyCode.CompanyCode  -- association [0..1]
LEFT OUTER JOIN I_AccountingDocument AS _AccountingDocument ON AccountingDocument = _AccountingDocument.AccountingDocument AND CompanyCode = _AccountingDocument.CompanyCode AND FiscalYear = _AccountingDocument.FiscalYear  -- association [0..1]
LEFT OUTER JOIN I_Currency AS _TransactionCurrency ON TransactionCurrency = _TransactionCurrency.Currency  -- association [0..1]
;