FINOC_RT_POI_MONTHS

DDL: FINOC_RT_POI_MONTHS SQL: FINOCV_RTPOIMNTH Type: view

Orgl Chg: Purchg Doc Chg Dt Plus Months

FINOC_RT_POI_MONTHS is a CDS View that provides data about "Orgl Chg: Purchg Doc Chg Dt Plus Months" in SAP S/4HANA. It reads from 1 data source (ekpo) and exposes 14 fields with key fields PurchasingDocument, PurchasingDocumentItem.

Data Sources (1)

SourceAliasJoin Type
ekpo ekpo from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName FINOCV_RTPOIMNTH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Orgl Chg: Purchg Doc Chg Dt Plus Months view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocument ekpo ebeln Source PurchDoc
KEY PurchasingDocumentItem ekpo ebelp Item pur. doc.
PurchasingDocumentCategory ekpo bstyp Source doc.cat.
PurchasingDocumentDeletionCode ekpo loekz Status
PurchasingDocumentItemCategory ekpo pstyp Item Category
IsCompletelyDelivered ekpo elikz Delivery Completion
IsFinallyInvoiced ekpo erekz Final Invoice Ind.
AccountAssignmentCategory ekpo knttp AcctAssgnCat:CC
InventorySpecialStockType ekpo sobkz Special Stock
Material ekpo matnr Vehicle Model
Plant ekpo werks Receiving Plant
ItemChangeDate ekpo aedat Obsolete
ProfitCenter ekpo ko_prctr Profit Center
CompanyCode ekpo bukrs Value

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 FINOC_RT_POI_MONTHS.
-- 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: FINOCV_RTPOIMNTH

CREATE VIEW FINOC_RT_POI_MONTHS AS
SELECT
  ekpo.ebeln AS PurchasingDocument,
  ekpo.ebelp AS PurchasingDocumentItem,
  ekpo.bstyp AS PurchasingDocumentCategory,
  ekpo.loekz AS PurchasingDocumentDeletionCode,
  ekpo.pstyp AS PurchasingDocumentItemCategory,
  ekpo.elikz AS IsCompletelyDelivered,
  ekpo.erekz AS IsFinallyInvoiced,
  ekpo.knttp AS AccountAssignmentCategory,
  ekpo.sobkz AS InventorySpecialStockType,
  ekpo.matnr AS Material,
  ekpo.werks AS Plant,
  ekpo.aedat AS ItemChangeDate,
  ekpo.ko_prctr AS ProfitCenter,
  ekpo.bukrs AS CompanyCode
FROM ekpo
;