aps_com_obs_pub_ddl

DDL: APS_COM_OBS_PUB_DDL SQL: APS_COM_OBS_P Type: view Package: SR_APS_COM_PUB

Communication Outbound Service

aps_com_obs_pub_ddl is a CDS View that provides data about "Communication Outbound Service" in SAP S/4HANA. It reads from 4 data sources (aps_com_w_obs, sbo_i_botypet, aps_com_w_obst, dd07t) and exposes 18 fields with key field OutboundServiceID. Part of development package SR_APS_COM_PUB.

Data Sources (4)

SourceAliasJoin Type
aps_com_w_obs aps_com_w_obs from
sbo_i_botypet bo_type_text left_outer
aps_com_w_obst obs_service_text left_outer
dd07t obs_type_text left_outer

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName APS_COM_OBS_P view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Communication Outbound Service view

Fields (18)

KeyFieldSource TableSource FieldDescription
KEY OutboundServiceID aps_com_w_obs obs_id
OutboundServiceType aps_com_w_obs obs_type
OutboundServiceTypeText dd07t ddtext Short text
ScopeDependent aps_com_w_obs scope_dependent Scope Dependent
IDocMessageType aps_com_w_obs idoc_msg_type Message type
IDocBasicType aps_com_w_obs idoc_type Basic type
RfcServiceID aps_com_w_obs rfc_service_id RFC Service ID
SOAPInterfaceName aps_com_w_obs ws_proxy_name ABAP Name
ApiHubPublish aps_com_w_obs publish_api_hub
ServiceDescription aps_com_w_obst text User Group
UILthenelseendasServiceInterface
URLPath aps_com_w_obs url_path
LeadingBOType aps_com_w_obs leading_bo_type SAP Object Type
LeadingBOTypeText sbo_i_botypet bo_text SAP Object Type Name
CreatedBy aps_com_w_obs create_user User Name
CreatedAt aps_com_w_obs create_timestamp Time Stamp
ChangedBy aps_com_w_obs change_user User Name
ChangedAt aps_com_w_obs change_timestamp Time Stamp

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_obs_pub_ddl.
-- 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_COM_OBS_P

CREATE VIEW aps_com_obs_pub_ddl AS
SELECT
  aps_com_w_obs.obs_id AS OutboundServiceID,
  aps_com_w_obs.obs_type AS OutboundServiceType,
  obs_type_text.ddtext AS OutboundServiceTypeText,
  aps_com_w_obs.scope_dependent AS ScopeDependent,
  aps_com_w_obs.idoc_msg_type AS IDocMessageType,
  aps_com_w_obs.idoc_type AS IDocBasicType,
  aps_com_w_obs.rfc_service_id AS RfcServiceID,
  aps_com_w_obs.ws_proxy_name AS SOAPInterfaceName,
  aps_com_w_obs.publish_api_hub AS ApiHubPublish,
  obs_service_text.text AS ServiceDescription,
  case when aps_com_w_obs.obs_type = #APS_COM_OBS_TYPE.'IDOC' then aps_com_w_obs.idoc_msg_type when aps_com_w_obs.obs_type = #APS_COM_OBS_TYPE.'SPRX' then aps_com_w_obs.ws_proxy_name when aps_com_w_obs.obs_type = #APS_COM_OBS_TYPE.'SRFC' then aps_com_w_obs.rfc_service_id when aps_com_w_obs.obs_type = #APS_COM_OBS_TYPE.'IDOC' then aps_com_w_obs.idoc_msg_type when aps_com_w_obs.obs_type = #APS_COM_OBS_TYPE.'SMTP' then '' when aps_com_w_obs.obs_type = #APS_COM_OBS_TYPE.'ODBC' then '' when aps_com_w_obs.obs_type = #APS_COM_OBS_TYPE.'UIL' then '' else '' end as ServiceInterface AS UILthenelseendasServiceInterface,
  aps_com_w_obs.url_path AS URLPath,
  aps_com_w_obs.leading_bo_type AS LeadingBOType,
  bo_type_text.bo_text AS LeadingBOTypeText,
  aps_com_w_obs.create_user AS CreatedBy,
  aps_com_w_obs.create_timestamp AS CreatedAt,
  aps_com_w_obs.change_user AS ChangedBy,
  aps_com_w_obs.change_timestamp AS ChangedAt
FROM aps_com_w_obs
LEFT OUTER JOIN dd07t AS obs_type_text ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN sbo_i_botypet AS bo_type_text ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN aps_com_w_obst AS obs_service_text ON /* join condition not captured in parsed metadata */
;