I_BackendSourceSystem

DDL: I_BACKENDSOURCESYSTEM SQL: IBACKENDSRCSYS Type: view BASIC

Backend Source System for Hub scenario

I_BackendSourceSystem is a Basic CDS View (Dimension) that provides data about "Backend Source System for Hub scenario" in SAP S/4HANA. It reads from 1 data source (mmpur_c_be_syreg) and exposes 5 fields with key field ProcurementHubSourceSystem.

Data Sources (1)

SourceAliasJoin Type
mmpur_c_be_syreg mmpur_c_be_syreg from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IBACKENDSRCSYS view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Backend Source System for Hub scenario view
VDM.viewType #BASIC view
Metadata.allowExtensions true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
AbapCatalog.preserveKey true view
ObjectModel.representativeKey ProcurementHubSourceSystem view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
Analytics.dataCategory #DIMENSION view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ProcurementHubSourceSystem be_source_sys Connected System ID
ProcurementHubSourceSystemName be_source_sys_name Connected Sys Name
CommSyst comm_sys_id Comm. System
LogicalSystem logsys Source system
ProcmtHubBackendBusSyst be_business_system Connected System

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_BackendSourceSystem.
-- 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: IBACKENDSRCSYS

CREATE VIEW I_BackendSourceSystem AS
SELECT
  be_source_sys AS ProcurementHubSourceSystem,
  be_source_sys_name AS ProcurementHubSourceSystemName,
  comm_sys_id AS CommSyst,
  logsys AS LogicalSystem,
  be_business_system AS ProcmtHubBackendBusSyst
FROM mmpur_c_be_syreg
;