P_MX_DIOTTaxItemSupplier
MX DIOT Tax Details with Supplier Nr
P_MX_DIOTTaxItemSupplier is a Composite CDS View that provides data about "MX DIOT Tax Details with Supplier Nr" in SAP S/4HANA. It reads from 2 data sources (P_MX_DIOTLineItemRawData, P_MX_DIOTPaymentDocument) and exposes 23 fields with key fields StatryRptgEntity, StatryRptCategory, StatryRptRunID, CompanyCode, TaxTransferDocument. Part of development package GLO_FIN_IS_VAT_MX.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| P_MX_DIOTLineItemRawData | P_MX_DIOTLineItemRawData | inner |
| P_MX_DIOTPaymentDocument | P_MX_DIOTPaymentDocument | from |
Parameters (6)
| Name | Type | Default |
|---|---|---|
| P_CompanyCode | fis_bukrs | |
| P_FiscalYear | fis_gjahr | |
| P_StatryRptgEntity | srf_reporting_entity | |
| P_StatryRptCategory | srf_rep_cat_id | |
| P_StatryRptRunID | srf_report_run_id | |
| P_Ledger | fins_ledger |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_EXCLUDED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.private | true | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
Fields (23)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | StatryRptgEntity | TaxItem | StatryRptgEntity | Reporting Entity |
| KEY | StatryRptCategory | TaxItem | StatryRptCategory | Report ID |
| KEY | StatryRptRunID | TaxItem | StatryRptRunID | Report Run ID |
| KEY | CompanyCode | TaxItem | CompanyCode | Receiver Company Code |
| KEY | TaxTransferDocument | TaxItem | TaxTransferDocument | Document Number |
| KEY | TaxTransferDocumentYear | TaxItem | TaxTransferDocumentYear | |
| KEY | AccountingDocument | TaxItem | AccountingDocument | Journal Entry |
| KEY | FiscalYear | TaxItem | FiscalYear | G/L Fiscal Year |
| KEY | AccountingDocumentItem | TaxItem | AccountingDocumentItem | Posting View Item |
| KEY | PaymentDocument | TaxItem | PaymentDocument | Payment Document Number |
| KEY | SenderFiscalYear | TaxItem | SenderFiscalYear | Sender FiscalYr |
| KEY | TaxCode | TaxItem | TaxCode | Tax Code |
| KEY | TaxBox | TaxItem | TaxBox | Tax.Bs.Gp.No. |
| KEY | TaxDeclnAmountType | TaxItem | TaxDeclnAmountType | |
| KEY | Supplier | |||
| KEY | MX_DIOTOperationType | TaxItem | MX_DIOTOperationType | |
| KEY | MX_SupplierType | TaxItem | MX_SupplierType | |
| UnifiedTaxBoxStructureType | TaxItem | UnifiedTaxBoxStructureType | ||
| ReportingCurrency | TaxItem | ReportingCurrency | Currency | |
| CompanyCodeCurrency | TaxItem | CompanyCodeCurrency | Local Currency | |
| DocumentCurrency | TaxItem | DocumentCurrency | Document Currency | |
| TaxBaseAmountInRptgCrcy | TaxItem | TaxBaseAmountInRptgCrcy | Base Amount | |
| TaxAmountInRptgCrcy | TaxItem | TaxAmountInRptgCrcy | Tax Rept. Crcy |
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_MX_DIOTTaxItemSupplier.
-- 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.
-- Parameters: P_CompanyCode : fis_bukrs, P_FiscalYear : fis_gjahr, P_StatryRptgEntity : srf_reporting_entity, P_StatryRptCategory : srf_rep_cat_id, P_StatryRptRunID : srf_report_run_id, P_Ledger : fins_ledger
CREATE VIEW P_MX_DIOTTaxItemSupplier AS
SELECT
TaxItem.StatryRptgEntity AS StatryRptgEntity,
TaxItem.StatryRptCategory AS StatryRptCategory,
TaxItem.StatryRptRunID AS StatryRptRunID,
TaxItem.CompanyCode AS CompanyCode,
TaxItem.TaxTransferDocument AS TaxTransferDocument,
TaxItem.TaxTransferDocumentYear AS TaxTransferDocumentYear,
TaxItem.AccountingDocument AS AccountingDocument,
TaxItem.FiscalYear AS FiscalYear,
TaxItem.AccountingDocumentItem AS AccountingDocumentItem,
TaxItem.PaymentDocument AS PaymentDocument,
TaxItem.SenderFiscalYear AS SenderFiscalYear,
TaxItem.TaxCode AS TaxCode,
TaxItem.TaxBox AS TaxBox,
TaxItem.TaxDeclnAmountType AS TaxDeclnAmountType,
cast ( GLAccountLineItemRawData.Supplier as md_supplier preserving type ) AS Supplier,
TaxItem.MX_DIOTOperationType AS MX_DIOTOperationType,
TaxItem.MX_SupplierType AS MX_SupplierType,
TaxItem.UnifiedTaxBoxStructureType AS UnifiedTaxBoxStructureType,
TaxItem.ReportingCurrency AS ReportingCurrency,
TaxItem.CompanyCodeCurrency AS CompanyCodeCurrency,
TaxItem.DocumentCurrency AS DocumentCurrency,
TaxItem.TaxBaseAmountInRptgCrcy AS TaxBaseAmountInRptgCrcy,
TaxItem.TaxAmountInRptgCrcy AS TaxAmountInRptgCrcy
FROM P_MX_DIOTPaymentDocument
INNER JOIN P_MX_DIOTLineItemRawData ON /* join condition not captured in parsed metadata */
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- 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
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA