FINOC_RT_SOI_MONTHS

DDL: FINOC_RT_SOI_MONTHS SQL: FINOCV_RTSOIMNTH Type: view

Orgl Chg: Sales Doc Crte Dt Plus Months

FINOC_RT_SOI_MONTHS is a CDS View that provides data about "Orgl Chg: Sales Doc Crte Dt Plus Months" in SAP S/4HANA. It reads from 2 data sources (vbak, vbap) and exposes 3 fields with key fields SalesDocument, SalesDocumentItem.

Data Sources (2)

SourceAliasJoin Type
vbak vbak inner
vbap vbap from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName FINOCV_RTSOIMNTH 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: Sales Doc Crte Dt Plus Months view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SalesDocument vbap vbeln SD Sched. Agmt
KEY SalesDocumentItem vbap posnr WBS Element
CreationDate vbap erdat Entered On

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_SOI_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_RTSOIMNTH

CREATE VIEW FINOC_RT_SOI_MONTHS AS
SELECT
  vbap.vbeln AS SalesDocument,
  vbap.posnr AS SalesDocumentItem,
  vbap.erdat AS CreationDate
FROM vbap
INNER JOIN vbak ON /* join condition not captured in parsed metadata */
;