How to Get Historical Uploaded Files in Fusion Applications

2
How to retrieve old uploaded files There are couple of ways to upload files 1. Using Import and Export feature from Navigator 2. Manage File Import Activities 1. File Import and Export : All the files can be downloaded from the same navigation and by selecting object for which it was uploaded. 2. Manage File Import Activities: Whenever an activity submitted, it creates a log file on UCM server. File can be traced by couple of ways: Process ID File Name Process ID: In fusion, activity submission gives process id. Trace the process Id and login to UCM, process id can be searched in Title column. IN below example a process submitted and has process if 172962 Login to UCM application and search the process id in title column. It will give LOG and OUT files. Process ID can be fetched from below query select l.message_text from cn_process_audits_all a, cn_process_audit_lines_all l

description

How to Get Historical Uploaded Files in Fusion Applications

Transcript of How to Get Historical Uploaded Files in Fusion Applications

Page 1: How to Get Historical Uploaded Files in Fusion Applications

How to retrieve old uploaded files

There are couple of ways to upload files

1. Using Import and Export feature from Navigator2. Manage File Import Activities

1. File Import and Export : All the files can be downloaded from the same navigation and by selecting object for which it was uploaded.

2. Manage File Import Activities: Whenever an activity submitted, it creates a log file on UCM server.

File can be traced by couple of ways:Process IDFile Name

Process ID: In fusion, activity submission gives process id. Trace the process Id and login to UCM, process id can be searched in Title column. IN below example a process submitted and has process if 172962

Login to UCM application and search the process id in title column. It will give LOG and OUT files.

Process ID can be fetched from below queryselect l.message_text from cn_process_audits_all a, cn_process_audit_lines_all lwhere a.request_id = :process_id and a.process_audit_id = l.process_audit_idorder by l.process_audit_line_id

If a file required which was uploaded in the past. Get the file name from Manage File Import Activities.

Page 2: How to Get Historical Uploaded Files in Fusion Applications

Login to the UCM server. Search the file name in Title column. You will get the uploaded file.