C_CO_DIANStRpWhldgTaxItemLg

DDL: C_CO_DIANSTRPWHLDGTAXITEMLG SQL: CSRCOWHLDGTXITML Type: view CONSUMPTION Package: GLO_FIN_IS_WHT_CO

All Whldg. Tax Items For Colombia DIAN

C_CO_DIANStRpWhldgTaxItemLg is a Consumption CDS View that provides data about "All Whldg. Tax Items For Colombia DIAN" in SAP S/4HANA. It reads from 1 data source (P_CO_DIANStRpWhldgTaxItem) and exposes 11 fields with key fields CompanyCode, AccountingDocument, FiscalYear, CO_DIANReportFormat, WithholdingTaxType. Part of development package GLO_FIN_IS_WHT_CO.

Data Sources (1)

SourceAliasJoin Type
P_CO_DIANStRpWhldgTaxItem P_CO_DIANStRpWhldgTaxItem from

Parameters (4)

NameTypeDefault
P_StatryRptgEntity srf_reporting_entity
P_StatryRptCategory srf_rep_cat_id
P_StatryRptRunID srf_report_run_id
P_CO_DIANReportFormat ficodian_report_format

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CSRCOWHLDGTXITML view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label All Whldg. Tax Items For Colombia DIAN view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #NOT_REQUIRED view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Receiver Company Code
KEY AccountingDocument AccountingDocument Journal Entry
KEY FiscalYear FiscalYear G/L Fiscal Year
KEY CO_DIANReportFormat CO_DIANReportFormat Report Format
KEY WithholdingTaxType WithholdingTaxType WTax Type
KEY CO_DIANReportItemType CO_DIANReportItemType Item Type
PostingDate PostingDate Posting Date for GR
BusinessPlace BusinessPlace Business place
StatryRptgEntity
StatryRptCategory
StatryRptRunID

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_DIANStRpWhldgTaxItemLg.
-- 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: CSRCOWHLDGTXITML
-- Parameters: P_StatryRptgEntity : srf_reporting_entity, P_StatryRptCategory : srf_rep_cat_id, P_StatryRptRunID : srf_report_run_id, P_CO_DIANReportFormat : ficodian_report_format

CREATE VIEW C_CO_DIANStRpWhldgTaxItemLg AS
SELECT
  CompanyCode,
  AccountingDocument,
  FiscalYear,
  CO_DIANReportFormat,
  WithholdingTaxType,
  CO_DIANReportItemType,
  PostingDate,
  BusinessPlace,
  $parameters.P_StatryRptgEntity AS StatryRptgEntity,
  $parameters.P_StatryRptCategory AS StatryRptCategory,
  $parameters.P_StatryRptRunID AS StatryRptRunID
FROM P_CO_DIANStRpWhldgTaxItem
;