Deprecated
This CDS view is deprecated in S/4HANA. View all deprecated CDS views →

C_JITOutbMessagePartnerTP

DDL: C_JITOUTBMESSAGEPARTNERTP SQL: CJITOUTBMSGTP Type: view CONSUMPTION

Consumption view message partner

C_JITOutbMessagePartnerTP is a Consumption CDS View that provides data about "Consumption view message partner" in SAP S/4HANA. It reads from 1 data source (I_JITOutbMessagePartnerTP) and exposes 6 fields with key field JITOutbMessagePartnerUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_JITOutbMessagePartnerTP I_JITOutbMessagePartnerTP from

Associations (1)

CardinalityTargetAliasCondition
[1..1] C_JITOutbCommunicationGroupTP _JITOutbCommunicationGroupTP $projection.JITOutbCommunicationGroupUUID = _JITOutbCommunicationGroupTP.JITOutbCommunicationGroupUUID

Annotations (21)

NameValueLevelField
AbapCatalog.sqlViewName CJITOUTBMSGTP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.personalData.blocking #NOT_REQUIRED view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Consumption view message partner view
VDM.viewType #CONSUMPTION view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.transactionalProcessingDelegated true view
ObjectModel.draftEnabled false view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Search.searchable true view
UI.headerInfo.typeName Message Partner view
UI.headerInfo.typeNamePlural Message Partner view
VDM.lifecycle.status #DEPRECATED view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY JITOutbMessagePartnerUUID JITOutbMessagePartnerUUID NodeID
JITOutbCommunicationGroupUUID JITOutbCommunicationGroupUUID NodeID
BusinessPartner BusinessPartner Issuing Authority
PersonFullName _BusinessPartner PersonFullName Full Name
BusinessPartnerName _BusinessPartner BusinessPartnerName Extracted Customer Name
_JITOutbCommunicationGroupTP _JITOutbCommunicationGroupTP

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 C_JITOutbMessagePartnerTP.
-- 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: CJITOUTBMSGTP

CREATE VIEW C_JITOutbMessagePartnerTP AS
SELECT
  JITOutbMessagePartnerUUID,
  JITOutbCommunicationGroupUUID,
  BusinessPartner,
  _BusinessPartner.PersonFullName AS PersonFullName,
  _BusinessPartner.BusinessPartnerName AS BusinessPartnerName
FROM I_JITOutbMessagePartnerTP
LEFT OUTER JOIN C_JITOutbCommunicationGroupTP AS _JITOutbCommunicationGroupTP ON JITOutbCommunicationGroupUUID = _JITOutbCommunicationGroupTP.JITOutbCommunicationGroupUUID  -- association [1..1]
;