R_JITOutbCallActionLogTP

DDL: R_JITOUTBCALLACTIONLOGTP Type: view_entity TRANSACTIONAL

JIT Outbound Call Action Log

R_JITOutbCallActionLogTP is a Transactional CDS View that provides data about "JIT Outbound Call Action Log" in SAP S/4HANA. It reads from 1 data source (I_JITOutbCallActionLog) and exposes 28 fields with key field JITCallActionLogUUID. It has 8 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_JITOutbCallActionLog I_JITOutbCallActionLog from

Associations (8)

CardinalityTargetAliasCondition
[0..1] R_JITOutboundCallTP _JITOutboundCallTP $projection.JITHeaderUUID = _JITOutboundCallTP.JITHeaderUUID
[0..1] I_UserContactCard _ProcessedByUser $projection.TriggeredByUser = _ProcessedByUser.ContactCardID
[0..1] I_JITActionText _JITActionText $projection.JITAction = _JITActionText.JITAction and _JITActionText.Language = $session.system_language
[0..1] I_JITCallActionSource _JITCallActionSource $projection.JITCallActionSource = _JITCallActionSource.JITCallActionSource
[0..1] I_JITCallActionStatus _JITCallActionStatus $projection.JITCallActionStatus = _JITCallActionStatus.JITCallActionStatus
[0..1] I_JITApplicationID _JITApplicationID $projection.JITFioriID = _JITApplicationID.JITFioriID
[0..1] I_JITInternalStatus _JITPreInternalStatus $projection.JITPreIntProcessingStatus = _JITPreInternalStatus.JITIntProcessingStatus
[0..1] I_JITInternalStatus _JITPostInternalStatus $projection.JITPostIntProcessingStatus = _JITPostInternalStatus.JITIntProcessingStatus

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label JIT Outbound Call Action Log view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (28)

KeyFieldSource TableSource FieldDescription
KEY JITCallActionLogUUID JITCallActionLogUUID UUID
JITHeaderUUID JITHeaderUUID NodeID
JITCallCompGrpUUID JITCallCompGrpUUID NodeID
ApplicationLogObject ApplicationLogObject TRFM Object
ApplicationLogSubobject ApplicationLogSubobject Triggering obj.
JITCallProcessingLogID JITCallProcessingLogID UUID
JITFioriApplicationName JITFioriApplicationName Short text
JITCallActionSource JITCallActionSource Action source
JITAction JITAction Action
JITCallActionStatus JITCallActionStatus Status Type
TriggeredByUser TriggeredByUser User Name
CreationDateTime CreationDateTime Timestamp
JITFioriID JITFioriID Fiori ID
JITApplicationLogHandle JITApplicationLogHandle Handle
JITApplicationLogSeverity JITApplicationLogSeverity Appl Log Severity
JITActionLogAdditionalNote JITActionLogAdditionalNote
JITPreIntProcessingStatus JITPreIntProcessingStatus Intl Proc. Status
JITPostIntProcessingStatus JITPostIntProcessingStatus Intl Proc. Status
JITFrameAction JITFrameAction Action
_JITOutbCallComponentGroupTP _JITOutbCallComponentGroupTP
_JITOutboundCallTP _JITOutboundCallTP
_ProcessedByUser _ProcessedByUser
_JITActionText _JITActionText
_JITCallActionSource _JITCallActionSource
_JITCallActionStatus _JITCallActionStatus
_JITApplicationID _JITApplicationID
_JITPreInternalStatus _JITPreInternalStatus
_JITPostInternalStatus _JITPostInternalStatus

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 R_JITOutbCallActionLogTP.
-- 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.

CREATE VIEW R_JITOutbCallActionLogTP AS
SELECT
  JITCallActionLogUUID,
  JITHeaderUUID,
  JITCallCompGrpUUID,
  ApplicationLogObject,
  ApplicationLogSubobject,
  JITCallProcessingLogID,
  JITFioriApplicationName,
  JITCallActionSource,
  JITAction,
  JITCallActionStatus,
  TriggeredByUser,
  CreationDateTime,
  JITFioriID,
  JITApplicationLogHandle,
  JITApplicationLogSeverity,
  JITActionLogAdditionalNote,
  JITPreIntProcessingStatus,
  JITPostIntProcessingStatus,
  JITFrameAction
FROM I_JITOutbCallActionLog
LEFT OUTER JOIN R_JITOutboundCallTP AS _JITOutboundCallTP ON JITHeaderUUID = _JITOutboundCallTP.JITHeaderUUID  -- association [0..1]
LEFT OUTER JOIN I_UserContactCard AS _ProcessedByUser ON TriggeredByUser = _ProcessedByUser.ContactCardID  -- association [0..1]
LEFT OUTER JOIN I_JITActionText AS _JITActionText ON JITAction = _JITActionText.JITAction AND _JITActionText.Language = $session.system_language  -- association [0..1]
LEFT OUTER JOIN I_JITCallActionSource AS _JITCallActionSource ON JITCallActionSource = _JITCallActionSource.JITCallActionSource  -- association [0..1]
LEFT OUTER JOIN I_JITCallActionStatus AS _JITCallActionStatus ON JITCallActionStatus = _JITCallActionStatus.JITCallActionStatus  -- association [0..1]
LEFT OUTER JOIN I_JITApplicationID AS _JITApplicationID ON JITFioriID = _JITApplicationID.JITFioriID  -- association [0..1]
LEFT OUTER JOIN I_JITInternalStatus AS _JITPreInternalStatus ON JITPreIntProcessingStatus = _JITPreInternalStatus.JITIntProcessingStatus  -- association [0..1]
LEFT OUTER JOIN I_JITInternalStatus AS _JITPostInternalStatus ON JITPostIntProcessingStatus = _JITPostInternalStatus.JITIntProcessingStatus  -- association [0..1]
;