APS_COM_CSCN_API_ROOT

DDL: APS_COM_CSCN_API_ROOT SQL: APS_CSCN_ROOT Type: view Package: SR_APS_COM_CSCN

Root API Mapping

APS_COM_CSCN_API_ROOT is a CDS View that provides data about "Root API Mapping" in SAP S/4HANA. It reads from 3 data sources (aps_com_w_cscn, aps_com_w_cscnt, APS_COM_CSCN_DEPRECATION) and exposes 11 fields. It has 3 associations to related views. Part of development package SR_APS_COM_CSCN.

Data Sources (3)

SourceAliasJoin Type
aps_com_w_cscn aps_com_w_cscn from
aps_com_w_cscnt aps_com_w_cscnt left_outer
APS_COM_CSCN_DEPRECATION DeprecationInformation left_outer

Associations (3)

CardinalityTargetAliasCondition
[0..*] APS_COM_CSCN_API_ROOT_PROPERTY _Propertys $projection.communication_scenario_id = _Propertys.communicationscenarioid
[0..*] APS_COM_CSCN_API_INB_SRV _InboundServices $projection.communication_scenario_id = _InboundServices.communication_scenario_id
[0..*] APS_COM_CSCN_API_OUTB_SRV _OutboundServices $projection.communication_scenario_id = _OutboundServices.communication_scenario_id

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName APS_CSCN_ROOT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_ALLOWED view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Root API Mapping view

Fields (11)

KeyFieldSource TableSource FieldDescription
ib_none_auth aps_com_w_cscn ib_none_auth
ib_x509_auth aps_com_w_cscn ib_x509_auth
ob_none_auth aps_com_w_cscn ob_none_auth
ob_x509_auth aps_com_w_cscn ob_x509_auth
description aps_com_w_cscnt description Well Code Des.
create_user aps_com_w_cscn create_user User Name
change_user aps_com_w_cscn change_user User Name
iam_app_id aps_com_w_cscn iam_app_id
_Propertys _Propertys
_InboundServices _InboundServices
_OutboundServices _OutboundServices

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 APS_COM_CSCN_API_ROOT.
-- 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: APS_CSCN_ROOT

CREATE VIEW APS_COM_CSCN_API_ROOT AS
SELECT
  aps_com_w_cscn.ib_none_auth AS ib_none_auth,
  aps_com_w_cscn.ib_x509_auth AS ib_x509_auth,
  aps_com_w_cscn.ob_none_auth AS ob_none_auth,
  aps_com_w_cscn.ob_x509_auth AS ob_x509_auth,
  aps_com_w_cscnt.description AS description,
  aps_com_w_cscn.create_user AS create_user,
  aps_com_w_cscn.change_user AS change_user,
  aps_com_w_cscn.iam_app_id AS iam_app_id
FROM aps_com_w_cscn
LEFT OUTER JOIN aps_com_w_cscnt ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN APS_COM_CSCN_DEPRECATION AS DeprecationInformation ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN APS_COM_CSCN_API_ROOT_PROPERTY AS _Propertys ON communication_scenario_id = _Propertys.communicationscenarioid  -- association [0..*]
LEFT OUTER JOIN APS_COM_CSCN_API_INB_SRV AS _InboundServices ON communication_scenario_id = _InboundServices.communication_scenario_id  -- association [0..*]
LEFT OUTER JOIN APS_COM_CSCN_API_OUTB_SRV AS _OutboundServices ON communication_scenario_id = _OutboundServices.communication_scenario_id  -- association [0..*]
;