fins_sis_proj

DDL: FINS_SIS_PROJ SQL: FINSV_SIS_PROJ Type: view

fins_sis_proj is a CDS View in SAP S/4HANA. It reads from 2 data sources (fagl_split_actc, fins_mproj_stat).

Data Sources (2)

SourceAliasJoin Type
fagl_split_actc b left_outer
fins_mproj_stat s left_outer

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName FINSV_SIS_PROJ view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S 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 fins_sis_proj.
-- 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: FINSV_SIS_PROJ

CREATE VIEW fins_sis_proj AS
SELECT *  -- field list not available in parsed metadata
LEFT OUTER JOIN fagl_split_actc AS b ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN fins_mproj_stat AS s ON /* join condition not captured in parsed metadata */
;