Fdm_Inv_Ref2_View

DDL: FDM_INV_REF2 SQL: FDM_INV_REF2 Type: view

Open Invoices and References to invoices

Fdm_Inv_Ref2_View is a CDS View that provides data about "Open Invoices and References to invoices" in SAP S/4HANA. It reads from 6 data sources.

Data Sources (6)

SourceAliasJoin Type
bseg b inner
bseg b inner
fdm_bstat_range f left_outer
fdm_bstat_range f left_outer
FIN_DISCOUNTS_VIEW k left_outer
FIN_DISCOUNTS_VIEW k left_outer

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName FDM_INV_REF2 view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #P view
ObjectModel.usageType.sizeCategory #L view
EndUserText.label Open Invoices and References to invoices view

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 Fdm_Inv_Ref2_View.
-- 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: FDM_INV_REF2

CREATE VIEW Fdm_Inv_Ref2_View AS
SELECT *  -- field list not available in parsed metadata
INNER JOIN bseg AS b ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN fdm_bstat_range AS f ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN FIN_DISCOUNTS_VIEW AS k ON /* join condition not captured in parsed metadata */
;