C_CO_DIANVatTaxReturnBoxLog

DDL: C_CO_DIANVATTAXRETURNBOXLOG Type: view_entity CONSUMPTION

Colombia DIAN VAT Tax Box Item Log

C_CO_DIANVatTaxReturnBoxLog is a Consumption CDS View that provides data about "Colombia DIAN VAT Tax Box Item Log" in SAP S/4HANA. It reads from 2 data sources (I_GLAccountLineItemRawData, I_StRpTaxItemBoxCube) and exposes 3 fields with key fields CompanyCode, AccountingDocument, FiscalYear.

Data Sources (2)

SourceAliasJoin Type
I_GLAccountLineItemRawData GLAccountLineItem inner
I_StRpTaxItemBoxCube TaxItemBox from

Parameters (3)

NameTypeDefault
P_FromPostingDate fis_budat_from
P_ToPostingDate fis_budat_to
P_Ledger fins_ledger

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #BLOCKED_DATA_INCLUDED view
EndUserText.label Colombia DIAN VAT Tax Box Item Log view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #CONSUMPTION view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode I_StRpTaxItemBoxCube CompanyCode Receiver Company Code
KEY AccountingDocument I_StRpTaxItemBoxCube AccountingDocument Journal Entry
KEY FiscalYear

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_CO_DIANVatTaxReturnBoxLog.
-- 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_FromPostingDate : fis_budat_from, P_ToPostingDate : fis_budat_to, P_Ledger : fins_ledger

CREATE VIEW C_CO_DIANVatTaxReturnBoxLog AS
SELECT
  TaxItemBox.CompanyCode AS CompanyCode,
  TaxItemBox.AccountingDocument AS AccountingDocument,
  cast( TaxItemBox.FiscalYear as fis_gjahr_no_conv preserving type ) AS FiscalYear
FROM I_StRpTaxItemBoxCube AS TaxItemBox
INNER JOIN I_GLAccountLineItemRawData AS GLAccountLineItem ON /* join condition not captured in parsed metadata */
;