R_JITOutbCallActionLogTP
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)
| Source | Alias | Join Type |
|---|---|---|
| I_JITOutbCallActionLog | I_JITOutbCallActionLog | from |
Associations (8)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [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)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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]
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA