P_RO_StRpPartnerItem

DDL: P_RO_STRPPARTNERITEM Type: view_entity CONSUMPTION Package: GLO_FIN_IS_VAT_RO

Romania: Partner Item info

P_RO_StRpPartnerItem is a Consumption CDS View that provides data about "Romania: Partner Item info" in SAP S/4HANA. Part of development package GLO_FIN_IS_VAT_RO.

Annotations (7)

NameValueLevelField
VDM.viewType #CONSUMPTION view
VDM.private true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #MIXED view
AccessControl.personalData.blocking #BLOCKED_DATA_INCLUDED view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Receiver Company Code
KEY AccountingDocument AccountingDocument Journal Entry
KEY FiscalYear FiscalYear G/L Fiscal Year
VATRegistration
Customer
Supplier
ClearingJournalEntry
ClearingDate

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_RO_StRpPartnerItem.
-- 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.

CREATE VIEW P_RO_StRpPartnerItem AS
SELECT
  CompanyCode,
  AccountingDocument,
  FiscalYear,
  max( VATRegistration ) AS VATRegistration,
  max( Customer ) AS Customer,
  max( Supplier ) AS Supplier,
  max( ClearingJournalEntry ) AS ClearingJournalEntry,
  max( ClearingDate ) AS ClearingDate
;