KSR_I_XM_COM_OUT_R

DDL: KSR_I_XM_COM_OUT_R SQL: KSR_IXMCOMOUT Type: view

KSR: Cross Tenant Outbound Communication

KSR_I_XM_COM_OUT_R is a CDS View that provides data about "KSR: Cross Tenant Outbound Communication" in SAP S/4HANA. It reads from 1 data source (ksr_xm_com_out) and exposes 13 fields with key field Destination.

Data Sources (1)

SourceAliasJoin Type
ksr_xm_com_out ksr_xm_com_out from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName KSR_IXMCOMOUT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label KSR: Cross Tenant Outbound Communication view
ClientHandling.type #CLIENT_INDEPENDENT view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY Destination ksr_xm_com_out destination RFC Destination
Service_Name ksr_xm_com_out service_name Service Name
Service_Type ksr_xm_com_out service_type Type of Ext. Service
H2_Name ksr_xm_com_out h2_name H2 Name
H2_Description ksr_xm_com_out h2_description Description
Created_At ksr_xm_com_out created_at Uploaded On
Created_By ksr_xm_com_out created_by Version Created By
Changed_At ksr_xm_com_out changed_at Timestamp
Changed_By ksr_xm_com_out changed_by User Name
H1_Name ksr_xm_com_out h1_name H1
H1_Description ksr_xm_com_out h1_description Description
H1_Type ksr_xm_com_out h1_type Short Description
H1_Managed_By ksr_xm_com_out h1_managed_by ID

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 KSR_I_XM_COM_OUT_R.
-- 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: KSR_IXMCOMOUT

CREATE VIEW KSR_I_XM_COM_OUT_R AS
SELECT
  ksr_xm_com_out.destination AS Destination,
  ksr_xm_com_out.service_name AS Service_Name,
  ksr_xm_com_out.service_type AS Service_Type,
  ksr_xm_com_out.h2_name AS H2_Name,
  ksr_xm_com_out.h2_description AS H2_Description,
  ksr_xm_com_out.created_at AS Created_At,
  ksr_xm_com_out.created_by AS Created_By,
  ksr_xm_com_out.changed_at AS Changed_At,
  ksr_xm_com_out.changed_by AS Changed_By,
  ksr_xm_com_out.h1_name AS H1_Name,
  ksr_xm_com_out.h1_description AS H1_Description,
  ksr_xm_com_out.h1_type AS H1_Type,
  ksr_xm_com_out.h1_managed_by AS H1_Managed_By
FROM ksr_xm_com_out
;