P_RU_UnifiedTaxNoticePaytBase

DDL: P_RU_UNIFIEDTAXNOTICEPAYTBASE SQL: PRUUTNPBASE Type: view CONSUMPTION Package: GLO_FIN_IS_RU_UTNP

UTNP items full data

P_RU_UnifiedTaxNoticePaytBase is a Consumption CDS View that provides data about "UTNP items full data" in SAP S/4HANA. It reads from 1 data source (I_RU_UnifiedTaxNtcPaytRptgItem) and exposes 26 fields. Part of development package GLO_FIN_IS_RU_UTNP.

Data Sources (1)

SourceAliasJoin Type
I_RU_UnifiedTaxNtcPaytRptgItem reportLog from

Parameters (3)

NameTypeDefault
P_StatryRptgEntity srf_reporting_entity
P_StatryRptCategory srf_rep_cat_id
P_StatryRptRunID srf_report_run_id

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PRUUTNPBASE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #CONSUMPTION view
VDM.private true view
EndUserText.label UTNP items full data view

Fields (26)

KeyFieldSource TableSource FieldDescription
StatryRptgEntity I_RU_UnifiedTaxNtcPaytRptgItem StatryRptgEntity Reporting Entity
StatryRptCategory I_RU_UnifiedTaxNtcPaytRptgItem StatryRptCategory Report ID
StatryRptRunID I_RU_UnifiedTaxNtcPaytRptgItem StatryRptRunID Report Run ID
CompanyCode item CompanyCode Receiver Company Code
AccountingDocument I_RU_UnifiedTaxNtcPaytRptgItem AccountingDocument Journal Entry
FiscalYear I_RU_UnifiedTaxNtcPaytRptgItem FiscalYear G/L Fiscal Year
AccountingDocumentItem I_RU_UnifiedTaxNtcPaytRptgItem AccountingDocumentItem Posting View Item
DueCalculationBaseDate I_RU_UnifiedTaxNtcPaytRptgItem DueCalculationBaseDate Due Calculation Base Date
RU_UnifiedTaxNoticePaymentVers I_RU_UnifiedTaxNtcPaytRptgItem RU_UnifiedTaxNoticePaymentVers Unf Tax Notice Vers
RU_SupplierKPP I_RU_UnifiedTaxNtcPaytRptgItem RU_SupplierKPP Seller KPP
RU_TerritoryClassfctnOKTMO I_RU_UnifiedTaxNtcPaytRptgItem RU_TerritoryClassfctnOKTMO OKTMO
RU_BudgetClassificationCode I_RU_UnifiedTaxNtcPaytRptgItem RU_BudgetClassificationCode KBK
RU_UnifiedTaxNoticePeriodCode I_RU_UnifiedTaxNtcPaytRptgItem RU_UnifiedTaxNoticePeriodCode Period Code
RU_UnifiedTxNoticePeriodNumber I_RU_UnifiedTaxNtcPaytRptgItem RU_UnifiedTxNoticePeriodNumber Tax period
InputFiscalYear I_RU_UnifiedTaxNtcPaytRptgItem InputFiscalYear Fiscal Year
Supplier item Supplier Supplier
GLAccount item GLAccount General Ledger
ChartOfAccounts item ChartOfAccounts Node Class
AccountingDocumentType item AccountingDocumentType Journal Entry Type
PostingDate item PostingDate Posting Date for GR
DocumentDate item DocumentDate Journal Entry Date
AmountInCompanyCodeCurrency
CompanyCodeCurrency item CompanyCodeCurrency Local Currency
_CompanyCode item _CompanyCode
_SupplierText item _SupplierText
_AccountingDocumentTypeText item _AccountingDocumentTypeText

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_RU_UnifiedTaxNoticePaytBase.
-- 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: PRUUTNPBASE
-- Parameters: P_StatryRptgEntity : srf_reporting_entity, P_StatryRptCategory : srf_rep_cat_id, P_StatryRptRunID : srf_report_run_id

CREATE VIEW P_RU_UnifiedTaxNoticePaytBase AS
SELECT
  reportLog.StatryRptgEntity AS StatryRptgEntity,
  reportLog.StatryRptCategory AS StatryRptCategory,
  reportLog.StatryRptRunID AS StatryRptRunID,
  item.CompanyCode AS CompanyCode,
  reportLog.AccountingDocument AS AccountingDocument,
  reportLog.FiscalYear AS FiscalYear,
  reportLog.AccountingDocumentItem AS AccountingDocumentItem,
  reportLog.DueCalculationBaseDate AS DueCalculationBaseDate,
  reportLog.RU_UnifiedTaxNoticePaymentVers AS RU_UnifiedTaxNoticePaymentVers,
  reportLog.RU_SupplierKPP AS RU_SupplierKPP,
  reportLog.RU_TerritoryClassfctnOKTMO AS RU_TerritoryClassfctnOKTMO,
  reportLog.RU_BudgetClassificationCode AS RU_BudgetClassificationCode,
  reportLog.RU_UnifiedTaxNoticePeriodCode AS RU_UnifiedTaxNoticePeriodCode,
  reportLog.RU_UnifiedTxNoticePeriodNumber AS RU_UnifiedTxNoticePeriodNumber,
  reportLog.InputFiscalYear AS InputFiscalYear,
  item.Supplier AS Supplier,
  item.GLAccount AS GLAccount,
  item.ChartOfAccounts AS ChartOfAccounts,
  item.AccountingDocumentType AS AccountingDocumentType,
  item.PostingDate AS PostingDate,
  item.DocumentDate AS DocumentDate,
  item.AmountInCompanyCodeCurrency * (-1) AS AmountInCompanyCodeCurrency,
  item.CompanyCodeCurrency AS CompanyCodeCurrency,
  item._CompanyCode AS _CompanyCode,
  item._SupplierText AS _SupplierText,
  item._AccountingDocumentTypeText AS _AccountingDocumentTypeText
FROM I_RU_UnifiedTaxNtcPaytRptgItem AS reportLog
;