Search Results jtf_fm_request_history
Overview
The JTF_FM_REQUEST_HISTORY view is a CRM Foundation (JTF) reporting object owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It exposes request history information generated by the JTF Foundation Management request-processing framework. This framework handles asynchronous and concurrent requests such as concurrent-program submissions, business-event-driven jobs, and workflow-triggered processing. Each row in the view represents the outcome of a single submitted request, together with the source, template, server, priority, and audit context associated with it.
The view is primarily used for monitoring and troubleshooting CRM Foundation request processing. Because it presents a denormalized, timestamps-mostly-ready projection of the underlying history table, it is well suited to operational dashboards, exception reporting, and integration extracts. The PROCESSED_DT_TM column is of particular interest to users searching for processing timestamps, as it reports when a request reached a terminal or intermediate processed state.
Underlying Base Objects
The view is defined over a single documented base object: the synonym JTF_FM_REQUEST_HISTORY_ALL. This is the multi-organization (ORG_ID-enabled) history table maintained by the JTF FM request subsystem. The _ALL suffix indicates that rows are partitioned by operating unit through ORG_ID, so any query that is not scoped to a single organization must either filter on ORG_ID or account for the multiple organizations present. The view applies a small transformation before exposing the data, most notably a DECODE on PROCESSED_DT_TM.
Key Columns
- HIST_REQ_ID — Primary identifier for the history record.
- REQUEST — The request payload or submitted request reference.
- REQUEST_TYPE — Classifies the request being processed.
- PARENT_REQ_ID — Links a child request to its parent request, supporting chained or resubmitted processing.
- RESUBMIT_COUNT — Tracks how many times the request has been resubmitted.
- OUTCOME_CODE / OUTCOME_DESC — Result of the request, with the coded value and its description.
- SUBMIT_DT_TM — Timestamp when the request was submitted.
- PROCESSED_DT_TM — Processing timestamp. The view text defines this as
DECODE(PROCESS_DT_TM, NULL, PROCESSED_DT_TM, TO_CHAR(PROCESS_DT_TM,'YYYY-MM-DD HH24:MI:SS')), meaning the underlying column is treated as a date value and rebased into a formatted character string where present. This dual nature is important when filtering or sorting. - SOURCE_CODE / SOURCE_CODE_ID — Identifies the originating source of the request.
- OBJECT_TYPE / OBJECT_ID / ORDER_ID — Contextual links to the business object the request acts upon.
- SERVER_ID / TEMPLATE_ID / GROUP_ID / MEDIA_TYPE — Server, template, grouping, and media routing attributes.
- APP_INFO / MESSAGE_ID / APP_INFO — Application context, logging, and message correlation.
- USER_ID / PRIORITY — Requesting user and processing priority.
- ORG_ID — Multi-organization partitioning column.
- F_DELETEDFLAG — Soft-delete indicator.
- TOTAL_JOBS — Number of jobs associated with the request.
- OBJECT_VERSION_NUMBER — Optimistic locking version.
- CREATION_DATE / CREATED_BY / LAST_UPDATE_DATE / LAST_UPDATED_BY / LAST_UPDATE_LOGIN — Standard WHO audit columns.
Common Use Cases and Queries
Typical uses include reviewing request outcomes by source, identifying unprocessed requests (where PROCESSED_DT_TM is NULL), measuring turnaround time between SUBMIT_DT_TM and PROCESSED_DT_TM, and auditing resubmissions through RESUBMIT_COUNT and PARENT_REQ_ID.
Because the view exposes PROCESSED_DT_TM as a formatted character string when populated, string and NULL comparisons behave differently from date comparisons. The following examples reflect that behavior:
- Find requests not yet processed:
SELECT HIST_REQ_ID, REQUEST, SUBMIT_DT_TM FROM APPS.JTF_FM_REQUEST_HISTORY WHERE PROCESSED_DT_TM IS NULL; - Find requests processed on a given day:
SELECT HIST_REQ_ID, REQUEST, PROCESSED_DT_TM FROM APPS.JTF_FM_REQUEST_HISTORY WHERE PROCESSED_DT_TM LIKE '2024-01-15%'; - Count outcomes by code:
SELECT OUTCOME_CODE, COUNT(*) FROM APPS.JTF_FM_REQUEST_HISTORY GROUP BY OUTCOME_CODE; - Scope to an organization:
SELECT * FROM APPS.JTF_FM_REQUEST_HISTORY WHERE ORG_ID = :org_id;
Repeated resubmissions should always be reconciled through PARENT_REQ_ID to avoid double-counting related history rows, and soft-deleted rows should be excluded with F_DELETEDFLAG where appropriate.
-
View: JTF_FM_REQUEST_HISTORY
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_FM_REQUEST_HISTORY, object_name:JTF_FM_REQUEST_HISTORY, status:VALID, product: JTF - CRM Foundation , description: Stores request history information , implementation_dba_data: APPS.JTF_FM_REQUEST_HISTORY ,
-
View: JTF_FM_REQUEST_HISTORY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_FM_REQUEST_HISTORY, object_name:JTF_FM_REQUEST_HISTORY, status:VALID, product: JTF - CRM Foundation , description: Stores request history information , implementation_dba_data: APPS.JTF_FM_REQUEST_HISTORY ,
-
VIEW: APPS.IEX_DUNNINGS_PARTY_BALI_V
12.1.1
-
VIEW: APPS.IEX_DUNNINGS_ACCT_BALI_V
12.2.2
-
VIEW: APPS.IEX_PAYING_DUNNINGS_BALI_V
12.2.2
-
VIEW: APPS.IEX_DUNNINGS_ACCT_BALI_V
12.1.1
-
VIEW: APPS.IEX_DUNNINGS_PARTY_BALI_V
12.2.2
-
VIEW: APPS.IEX_PAYING_DUNNINGS_BALI_V
12.1.1
-
VIEW: APPS.CS_SR_FULFIL_STATUS_V
12.1.1
-
VIEW: APPS.CS_SR_FULFIL_STATUS_V
12.2.2
-
VIEW: APPS.IGS_CO_INTERACTION_HISTORY_V
12.1.1
-
VIEW: APPS.AST_COLLTRL_HISTORY_V
12.2.2
-
VIEW: APPS.JTF_FM_CONTENT_HISTORY_V
12.1.1
-
VIEW: APPS.JTF_FM_CONTENT_HISTORY_V
12.2.2
-
VIEW: APPS.AST_COLLTRL_HISTORY_V
12.1.1
-
SYNONYM: APPS.JTF_FM_REQUEST_HISTORY_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_FM_REQUEST_HISTORY_ALL, status:VALID,
-
View: CS_SR_FULFIL_STATUS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_FULFIL_STATUS_V, object_name:CS_SR_FULFIL_STATUS_V, status:VALID, product: CS - Service , description: For a particular Source Object and Source Object Id, this View is used to retrieve the status of a submitted fulfillment request. , implementation_dba_data: APPS.CS_SR_FULFIL_STATUS_V ,
-
APPS.JTF_REQUEST_HISTORY_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.JTF_FM_HISTORY_UTIL_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_FM_HISTORY_UTIL_PVT, status:VALID,
-
SYNONYM: APPS.JTF_FM_REQUEST_HISTORY_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_FM_REQUEST_HISTORY_ALL, status:VALID,
-
PACKAGE BODY: APPS.JTF_REQUEST_HISTORY_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_REQUEST_HISTORY_PVT, status:VALID,
-
PACKAGE BODY: APPS.JTF_REQUEST_HISTORY_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_REQUEST_HISTORY_PVT, status:VALID,
-
View: IGS_CO_INTERACTION_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CO_INTERACTION_HISTORY_V, object_name:IGS_CO_INTERACTION_HISTORY_V, status:VALID, product: IGS - Student System , description: Interaction History , implementation_dba_data: APPS.IGS_CO_INTERACTION_HISTORY_V ,
-
PACKAGE BODY: APPS.JTF_FM_UTL_V
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_FM_UTL_V, status:VALID,
-
PACKAGE BODY: APPS.JTF_FM_UTL_V
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_FM_UTL_V, status:VALID,
-
View: IGS_CO_INTERACTION_HISTORY_V
12.2.2
product: IGS - Student System (Obsolete) , description: Interaction History , implementation_dba_data: Not implemented in this database ,
-
View: AST_COLLTRL_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_COLLTRL_HISTORY_V, object_name:AST_COLLTRL_HISTORY_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_COLLTRL_HISTORY_V ,
-
View: CS_SR_FULFIL_STATUS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_FULFIL_STATUS_V, object_name:CS_SR_FULFIL_STATUS_V, status:VALID, product: CS - Service , description: For a particular Source Object and Source Object Id, this View is used to retrieve the status of a submitted fulfillment request. , implementation_dba_data: APPS.CS_SR_FULFIL_STATUS_V ,
-
APPS.JTF_REQUEST_HISTORY_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.JTF_FM_HISTORY_UTIL_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_FM_HISTORY_UTIL_PVT, status:VALID,
-
VIEW: APPS.IEX_DUNNINGS_PARTY_BALI_V
12.2.2
owner:APPS, object_type:VIEW, object_name:IEX_DUNNINGS_PARTY_BALI_V, status:VALID,
-
View: JTF_FM_CONTENT_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_FM_CONTENT_HISTORY_V, object_name:JTF_FM_CONTENT_HISTORY_V, status:VALID, product: JTF - CRM Foundation , description: View referring to the JTF_FM_CONTENT_HISTORY table , implementation_dba_data: APPS.JTF_FM_CONTENT_HISTORY_V ,
-
View: AST_COLLTRL_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_COLLTRL_HISTORY_V, object_name:AST_COLLTRL_HISTORY_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_COLLTRL_HISTORY_V ,
-
VIEW: APPS.IEX_DUNNINGS_ACCT_BALI_V
12.2.2
owner:APPS, object_type:VIEW, object_name:IEX_DUNNINGS_ACCT_BALI_V, status:VALID,
-
VIEW: APPS.IEX_DUNNINGS_BALI_V
12.1.1
-
APPS.JTF_FM_HISTORY_UTIL_PVT SQL Statements
12.1.1
-
VIEW: APPS.IEX_DUNNINGS_ACCT_BALI_V
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_DUNNINGS_ACCT_BALI_V, status:VALID,
-
VIEW: APPS.AST_COLLTRL_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_COLLTRL_HISTORY_V, object_name:AST_COLLTRL_HISTORY_V, status:VALID,
-
VIEW: APPS.IEX_DUNNINGS_PARTY_BALI_V
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_DUNNINGS_PARTY_BALI_V, status:VALID,
-
View: JTF_FM_CONTENT_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_FM_CONTENT_HISTORY_V, object_name:JTF_FM_CONTENT_HISTORY_V, status:VALID, product: JTF - CRM Foundation , description: View referring to the JTF_FM_CONTENT_HISTORY table , implementation_dba_data: APPS.JTF_FM_CONTENT_HISTORY_V ,
-
VIEW: APPS.IEX_DUNNINGS_BALI_V
12.2.2
-
VIEW: APPS.AST_COLLTRL_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_COLLTRL_HISTORY_V, object_name:AST_COLLTRL_HISTORY_V, status:VALID,
-
PACKAGE BODY: APPS.IGS_CO_PROCESS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_CO_PROCESS, status:VALID,
-
VIEW: APPS.CS_SR_FULFIL_STATUS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_FULFIL_STATUS_V, object_name:CS_SR_FULFIL_STATUS_V, status:VALID,
-
VIEW: APPS.CS_SR_FULFIL_STATUS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_FULFIL_STATUS_V, object_name:CS_SR_FULFIL_STATUS_V, status:VALID,
-
APPS.JTF_FM_HISTORY_UTIL_PVT SQL Statements
12.2.2
-
VIEW: APPS.IEX_PAYING_DUNNINGS_BALI_V
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_PAYING_DUNNINGS_BALI_V, status:VALID,
-
VIEW: APPS.IEX_TRX_DUNNINGS_BALI_V
12.2.2
-
VIEW: APPS.IEX_DUNNINGS_BALI_V
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_DUNNINGS_BALI_V, status:VALID,
-
VIEW: APPS.JTF_FM_CONTENT_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_FM_CONTENT_HISTORY_V, object_name:JTF_FM_CONTENT_HISTORY_V, status:VALID,