I_RU_BusinessPartnerContractVH

DDL: I_RU_BUSINESSPARTNERCONTRACTVH SQL: IRUCONTVH Type: view COMPOSITE Package: GLO_FIN_IS_RU

Contracts in Russian Financials

I_RU_BusinessPartnerContractVH is a Composite CDS View that provides data about "Contracts in Russian Financials" in SAP S/4HANA. It reads from 1 data source (I_RU_Contract) and exposes 6 fields with key fields CompanyCode, AssignmentReference. Part of development package GLO_FIN_IS_RU.

Data Sources (1)

SourceAliasJoin Type
I_RU_Contract Contract from

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName IRUCONTVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #M view
EndUserText.label Contracts in Russian Financials view
Consumption.ranked true view
ObjectModel.representativeKey AssignmentReference view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode I_RU_Contract CompanyCode Receiver Company Code
KEY AssignmentReference I_RU_Contract AssignmentReference Assignment Reference
Customer I_RU_Contract Customer Sold-to Party
CustomerAuthznGrp Customer AuthorizationGroup AuthorizGroup
Supplier I_RU_Contract Supplier Supplier
SupplierAuthznGrp Supplier AuthorizationGroup AuthorizGroup

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 I_RU_BusinessPartnerContractVH.
-- 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: IRUCONTVH

CREATE VIEW I_RU_BusinessPartnerContractVH AS
SELECT
  Contract.CompanyCode AS CompanyCode,
  Contract.AssignmentReference AS AssignmentReference,
  Contract.Customer AS Customer,
  Customer.AuthorizationGroup AS CustomerAuthznGrp,
  Contract.Supplier AS Supplier,
  Supplier.AuthorizationGroup AS SupplierAuthznGrp
FROM I_RU_Contract AS Contract
;