I_PurchasingInfoRecordStdVH

DDL: I_PURCHASINGINFORECORDSTDVH SQL: IPIR__VH Type: view COMPOSITE Package: VDM_MM_PUR_SOS

Purchasing Info Record

I_PurchasingInfoRecordStdVH is a Composite CDS View that provides data about "Purchasing Info Record" in SAP S/4HANA. It reads from 1 data source (I_PurchasingInfoRecord) and exposes 9 fields with key fields PurchasingInfoRecord, PurchasingOrganization, Plant, PurchasingInfoRecordCategory. It is exposed through 3 OData services (ASQL_F2358, ASQL_F2914, ASQL_F8725). Part of development package VDM_MM_PUR_SOS.

Data Sources (1)

SourceAliasJoin Type
I_PurchasingInfoRecord I_PurchasingInfoRecord from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IPIR__VH view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey PurchasingInfoRecord view
ObjectModel.usageType.dataClass #MASTER view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Purchasing Info Record view
Search.searchable true view
Consumption.ranked true view

OData Services (3)

ServiceBindingVersionContractRelease
ASQL_F2358 ASQL_F2358 C2 NOT_RELEASED
ASQL_F2914 ASQL_F2914 C2 NOT_RELEASED
ASQL_F8725 ASQL_F8725 C2 NOT_RELEASED

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY PurchasingInfoRecord PurchasingInfoRecord Info Record
KEY PurchasingOrganization _PurgInfoRecdOrgPlantData PurchasingOrganization Purchasing Organization
KEY Plant _PurgInfoRecdOrgPlantData Plant Valuation Area
KEY PurchasingInfoRecordCategory _PurgInfoRecdOrgPlantData PurchasingInfoRecordCategory Infotype
PurchasingGroup _PurgInfoRecdOrgPlantData PurchasingGroup Purchasing Group
Supplier Supplier Supplier
Material Material Vehicle Model
MaterialGroup Material Group
_PurgInfoRecdOrgPlantData _PurgInfoRecdOrgPlantData

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_PurchasingInfoRecordStdVH.
-- 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: IPIR__VH

CREATE VIEW I_PurchasingInfoRecordStdVH AS
SELECT
  PurchasingInfoRecord,
  _PurgInfoRecdOrgPlantData.PurchasingOrganization AS PurchasingOrganization,
  _PurgInfoRecdOrgPlantData.Plant AS Plant,
  _PurgInfoRecdOrgPlantData.PurchasingInfoRecordCategory AS PurchasingInfoRecordCategory,
  _PurgInfoRecdOrgPlantData.PurchasingGroup AS PurchasingGroup,
  Supplier,
  Material,
  I_PurchasingInfoRecord._MaterialGroup.MaterialGroup AS MaterialGroup
FROM I_PurchasingInfoRecord
;