KSR_I_TA_SERVICES_OUT_R

DDL: KSR_I_TA_SERVICES_OUT_R SQL: KSR_ITASRVOUTR Type: view

KSR: Tenant Aggregated Outbound Services

KSR_I_TA_SERVICES_OUT_R is a CDS View that provides data about "KSR: Tenant Aggregated Outbound Services" in SAP S/4HANA. It reads from 3 data sources (KSR_I_TA_HTTP_CL_R, KSR_I_TA_RFC_CL_R, KSR_I_TA_WS_CO_R) and exposes 83 fields with key fields client, Tenant_Id, Instance, Timestamp_Id, User_Group.

Data Sources (3)

SourceAliasJoin Type
KSR_I_TA_HTTP_CL_R KSR_I_TA_HTTP_CL_R from
KSR_I_TA_RFC_CL_R KSR_I_TA_RFC_CL_R union
KSR_I_TA_WS_CO_R KSR_I_TA_WS_CO_R union

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName KSR_ITASRVOUTR view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label KSR: Tenant Aggregated Outbound Services view
ClientHandling.type #CLIENT_DEPENDENT view

Fields (83)

KeyFieldSource TableSource FieldDescription
KEY client client Workflow definition: Client
KEY Tenant_Id Tenant_Id Testplan Description
KEY Instance Instance TaskCount
KEY Timestamp_Id Timestamp_Id Timestamp ID
KEY User_Group User_Group User Group
KEY Tenant_Group Tenant_Group Tenant Authorization
KEY Run_Id Run_Id UUID
KEY Destination_Name Destination_Name Logical Port
KEY Request_Entry_Name Request_Entry_Name Request Entry Name
KEY Request_Entry_Type_Raw Request_Entry_Type_Raw Request Entry Type
Request_Entry_Type Request_Entry_Type Request Entry Type
Call_Count
Calling_Time
Max_Calling_Time
Data_Transferred
Service_Name Service_Name Service Name
Service_Type Service_Type Type of Ext. Service
H2_Name H2_Name H2 Name
Created_At Created_At Uploaded On
Created_By Created_By Version Created By
Changed_At Changed_At Timestamp
Changed_By Changed_By User Name
H1_Name H1_Name H1
H1_Description H1_Description Description
H1_Type H1_Type Short Description
TIME_ZONE TIME_ZONE TimeZone
TIME_PERIOD TIME_PERIOD Time Period in Month
TIME_GRANULARITY TIME_GRANULARITY Time Granularity
KEY Tenant_Id Tenant_Id Testplan Description
KEY Instance Instance TaskCount
KEY Timestamp_Id Timestamp_Id Timestamp ID
KEY User_Group User_Group User Group
KEY Tenant_Group Tenant_Group Tenant Authorization
KEY Run_Id Run_Id UUID
KEY Destination_Name Destination_Name Logical Port
KEY Request_Entry_Name Request_Entry_Name Request Entry Name
KEY Request_Entry_Type_Raw Request_Entry_Type_Raw Request Entry Type
Request_Entry_Type Request_Entry_Type Request Entry Type
Call_Count
Calling_Time
Max_Calling_Time
Data_Transferred
Service_Name Service_Name Service Name
Service_Type Service_Type Type of Ext. Service
H2_Name H2_Name H2 Name
Created_At Created_At Uploaded On
Created_By Created_By Version Created By
Changed_At Changed_At Timestamp
Changed_By Changed_By User Name
H1_Name H1_Name H1
H1_Description H1_Description Description
H1_Type H1_Type Short Description
TIME_ZONE TIME_ZONE TimeZone
TIME_PERIOD TIME_PERIOD Time Period in Month
TIME_GRANULARITY TIME_GRANULARITY Time Granularity
KEY Tenant_Id Tenant_Id Testplan Description
KEY Instance Instance TaskCount
KEY Timestamp_Id Timestamp_Id Timestamp ID
KEY User_Group User_Group User Group
KEY Tenant_Group Tenant_Group Tenant Authorization
KEY Run_Id Run_Id UUID
KEY Destination_Name Logical_Port Logical Port
KEY Request_Entry_Name Request_Entry_Name Request Entry Name
KEY Request_Entry_Type_Raw Request_Entry_Type_Raw Request Entry Type
Request_Entry_Type Request_Entry_Type Request Entry Type
Call_Count
Calling_Time
Max_Calling_Time
Data_Transferred
Service_Name Service_Name Service Name
Service_Type Service_Type Type of Ext. Service
H2_Name H2_Name H2 Name
Created_At Created_At Uploaded On
Created_By Created_By Version Created By
Changed_At Changed_At Timestamp
Changed_By Changed_By User Name
H1_Name H1_Name H1
H1_Description H1_Description Description
H1_Type H1_Type Short Description
TIME_ZONE TIME_ZONE TimeZone
TIME_PERIOD TIME_PERIOD Time Period in Month
TIME_GRANULARITY TIME_GRANULARITY Time Granularity
TIMESTAMP_UTC TIMESTAMP_UTC Timestamp

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_TA_SERVICES_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_ITASRVOUTR

CREATE VIEW KSR_I_TA_SERVICES_OUT_R AS
SELECT
  client,
  Tenant_Id,
  Instance,
  Timestamp_Id,
  User_Group,
  Tenant_Group,
  Run_Id,
  Destination_Name,
  Request_Entry_Name,
  Request_Entry_Type_Raw,
  Request_Entry_Type,
  sum(Call_Count) AS Call_Count,
  sum(Calling_Time) AS Calling_Time,
  max(Max_Calling_Time) AS Max_Calling_Time,
  sum(Data_Transferred) AS Data_Transferred,
  Service_Name,
  Service_Type,
  H2_Name,
  Created_At,
  Created_By,
  Changed_At,
  Changed_By,
  H1_Name,
  H1_Description,
  H1_Type,
  TIME_ZONE,
  TIME_PERIOD,
  TIME_GRANULARITY,
  TIMESTAMP_UTC
FROM KSR_I_TA_HTTP_CL_R
-- UNION with additional select branch(es): KSR_I_TA_RFC_CL_R, KSR_I_TA_WS_CO_R
;