C_AR_StRpVATForm731ItemC
Argentina VAT Form 731
C_AR_StRpVATForm731ItemC is a Consumption CDS View (Cube) that provides data about "Argentina VAT Form 731" in SAP S/4HANA. It reads from 3 data sources (I_AR_TaxClassIdentification, I_Customer, I_Supplier) and exposes 40 fields with key fields StatryRptgEntity, StatryRptCategory, StatryRptRunID, CompanyCode, AccountingDocument.
Data Sources (3)
| Source | Alias | Join Type |
|---|---|---|
| I_AR_TaxClassIdentification | I_AR_TaxClassIdentification | left_outer |
| I_Customer | I_Customer | left_outer |
| I_Supplier | I_Supplier | left_outer |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CARFORM731 | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| EndUserText.label | Argentina VAT Form 731 | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_INCLUDED | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Analytics.dataCategory | #CUBE | view | |
| Metadata.allowExtensions | true | view | |
| VDM.lifecycle.status | #DEPRECATED | view |
Fields (40)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | StatryRptgEntity | StatryRptgEntity | Reporting Entity | |
| KEY | StatryRptCategory | StatryRptCategory | Report ID | |
| KEY | StatryRptRunID | StatryRptRunID | Report Run ID | |
| TaxType | TaxType | Tax Type | ||
| ReportingDate | ReportingDate | |||
| DebitCreditCode | DebitCreditCode | Single-Character Flag | ||
| Ledger | Ledger | Ledger | ||
| TaxBaseAmountInCoCodeCrcy | TaxBaseAmountInCoCodeCrcy | TxBaseAmt CoCodeCrcy | ||
| TaxAmountInCoCodeCrcy | TaxAmountInCoCodeCrcy | Tax Amount in Company Code Currency | ||
| TaxBaseAmountInTransCrcy | TaxBaseAmountInTransCrcy | Value-Added Tax | ||
| TaxReturnCountry | TaxReturnCountry | Reporting C/R | ||
| TaxAmountInCountryCrcy | TaxAmountInCountryCrcy | Tax Rept. Crcy | ||
| TaxBaseAmountInCountryCrcy | TaxBaseAmountInCountryCrcy | Base Amount | ||
| CompanyCodeCountry | CompanyCodeCountry | Reporting Ctry/Reg. | ||
| CountryCurrency | CountryCurrency | Currency | ||
| StRpTaxClassification | StRpTaxClassification | Tax class | ||
| AddressRegion | AddressRegion | Region | ||
| CustomerCounty | CustomerCounty | County Code | ||
| MunicipalJurisdiction | MunicipalJurisdiction | Munic. Jurisd. Code | ||
| ZeroVATRsn | ZeroVATRsn | Reason for Zero VAT | ||
| TaxIsProRated | TaxIsProRated | ProRated Ind. | ||
| GLBusinessTransactionType | GLBusinessTransactionType | Transact. Type | ||
| ResponsibleType | I_Customer | ResponsibleType | Tax Type | |
| Customer | I_Customer | Customer | Sold-to Party | |
| CustomerCountry | I_Customer | Country | Venue: Ctry/Reg | |
| Supplier | I_Supplier | Supplier | Supplier | |
| SupplierCountry | I_Supplier | Country | Venue: Ctry/Reg | |
| KEY | CompanyCode | TaxItem | CompanyCode | Receiver Company Code |
| KEY | AccountingDocument | TaxItem | AccountingDocument | Journal Entry |
| KEY | FiscalYear | TaxItem | FiscalYear | G/L Fiscal Year |
| KEY | TaxItem | TaxItem | TaxItem | Tax Item |
| KEY | TransactionTypeDetermination | TaxItem | TransactionTypeDetermination | Transaction Key |
| KEY | TaxCode | TaxItem | TaxCode | Tax Code |
| TaxReportingDate | TaxItem | TaxReportingDate | Tax Reporting Date | |
| GLAccount | TaxItem | GLAccount | General Ledger | |
| PostingDate | TaxItem | PostingDate | Posting Date for GR | |
| CompanyCodeCurrency | TaxItem | CompanyCodeCurrency | Local Currency | |
| DocumentCurrency | TaxItem | DocumentCurrency | Document Currency | |
| TaxCalculationProcedure | TaxItem | TaxCalculationProcedure | Tax Procedure | |
| BusinessPartner | TaxItem | BusinessPartner | Issuing Authority |
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 C_AR_StRpVATForm731ItemC.
-- 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: CARFORM731
CREATE VIEW C_AR_StRpVATForm731ItemC AS
SELECT
StatryRptgEntity,
StatryRptCategory,
StatryRptRunID,
TaxType,
ReportingDate,
DebitCreditCode,
Ledger,
TaxBaseAmountInCoCodeCrcy,
TaxAmountInCoCodeCrcy,
TaxBaseAmountInTransCrcy,
TaxReturnCountry,
TaxAmountInCountryCrcy,
TaxBaseAmountInCountryCrcy,
CompanyCodeCountry,
CountryCurrency,
StRpTaxClassification,
AddressRegion,
CustomerCounty,
MunicipalJurisdiction,
ZeroVATRsn,
TaxIsProRated,
GLBusinessTransactionType,
I_Customer.ResponsibleType AS ResponsibleType,
I_Customer.Customer AS Customer,
I_Customer.Country AS CustomerCountry,
I_Supplier.Supplier AS Supplier,
I_Supplier.Country AS SupplierCountry,
TaxItem.CompanyCode AS CompanyCode,
TaxItem.AccountingDocument AS AccountingDocument,
TaxItem.FiscalYear AS FiscalYear,
TaxItem.TaxItem AS TaxItem,
TaxItem.TransactionTypeDetermination AS TransactionTypeDetermination,
TaxItem.TaxCode AS TaxCode,
TaxItem.TaxReportingDate AS TaxReportingDate,
TaxItem.GLAccount AS GLAccount,
TaxItem.PostingDate AS PostingDate,
TaxItem.CompanyCodeCurrency AS CompanyCodeCurrency,
TaxItem.DocumentCurrency AS DocumentCurrency,
TaxItem.TaxCalculationProcedure AS TaxCalculationProcedure,
TaxItem.BusinessPartner AS BusinessPartner
LEFT OUTER JOIN I_AR_TaxClassIdentification ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_Customer ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_Supplier ON /* join condition not captured in parsed metadata */
;
Learn More
- S/4HANA CDS View Deprecation: What You Need to Know
- 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
- 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