DBA Data[Home] [Help]

VIEW: APPS.FND_CONC_REQ_OUTPUTS_V

Source

View Text - Preformatted

SELECT R.request_id, R.phase_code, R.status_code, A.action_type action_type, decode(nvl(A.action_type,0), 6, O.file_node_name, R.outfile_node_name), decode(nvl(A.Action_type,0), 6, O.file_name, R.outfile_name), decode(nvl(A.action_type,0), 6, O.file_size, R.ofile_size), decode(nvl(A.action_type,0), 6, O.file_type, R.output_file_type), decode(nvl(A.action_type,0), 6, O.file_creation_date,R.Actual_completion_date), R.save_output_flag from fnd_concurrent_requests R, fnd_conc_pp_actions A, fnd_conc_req_outputs O WHERE R.request_id = A.concurrent_request_id (+) and A.action_type(+) = 6 and A.concurrent_request_id = O.concurrent_request_id (+) and A.action_type= O.action_type (+)
View Text - HTML Formatted

SELECT R.REQUEST_ID
, R.PHASE_CODE
, R.STATUS_CODE
, A.ACTION_TYPE ACTION_TYPE
, DECODE(NVL(A.ACTION_TYPE
, 0)
, 6
, O.FILE_NODE_NAME
, R.OUTFILE_NODE_NAME)
, DECODE(NVL(A.ACTION_TYPE
, 0)
, 6
, O.FILE_NAME
, R.OUTFILE_NAME)
, DECODE(NVL(A.ACTION_TYPE
, 0)
, 6
, O.FILE_SIZE
, R.OFILE_SIZE)
, DECODE(NVL(A.ACTION_TYPE
, 0)
, 6
, O.FILE_TYPE
, R.OUTPUT_FILE_TYPE)
, DECODE(NVL(A.ACTION_TYPE
, 0)
, 6
, O.FILE_CREATION_DATE
, R.ACTUAL_COMPLETION_DATE)
, R.SAVE_OUTPUT_FLAG
FROM FND_CONCURRENT_REQUESTS R
, FND_CONC_PP_ACTIONS A
, FND_CONC_REQ_OUTPUTS O
WHERE R.REQUEST_ID = A.CONCURRENT_REQUEST_ID (+)
AND A.ACTION_TYPE(+) = 6
AND A.CONCURRENT_REQUEST_ID = O.CONCURRENT_REQUEST_ID (+)
AND A.ACTION_TYPE= O.ACTION_TYPE (+)