Re: parameters are not passed to concurrent requests
Posted by ErmanArslansOracleBlog on
URL: http://erman-arslan-s-oracle-forum.124.s1.nabble.com/parameters-are-not-passed-to-concurrent-requests-tp5346p5360.html
Aha.. With the all info you provided, I started to think that this is related with Forms. (supposing you are using standard forms screens to submit this problematic request)
1)How do you submit this concurrent request?
You already mentioned that the issue is produced when you submit it from frontend.
Exactly how do you submit? Are you using Standard Concurrent request submit form?
2)Any errors in the forms server trace?
3)Anything related in the fnd_log_messages?
Please do the following and check the output:
To generate the entries in the fnd_log_messages while running a concurrent request program set the following:
1. Enable the profile 'Concurrent: Allow Debugging'
2. Give the debug module as '%' (or the product of the program like 'po%')
3. Before running concurrent program, click 'Diagnostics' button and enable
logging there as well.
4. Collect the entries from fnd_log_messages.
5. Use the AUDSID from the request status log and collect it via SQL like:
SQL> select * from FND_LOG_MESSAGES where AUDSID = &audsid;
4)Send me the logfile of a completed concurrent request..
5)Send me the screenshot of the diagnostic window. (using concurrent request form)
6)Enable FRD trace, reproduce the issue and check the trace to if there are see any errors.
7)Enable trace on your client's java plugin. Open the java console and check the java console output to see if there are any errors produced when the issue is reproduced.
8)Also tell me-> Is this issue specific to a single concurrent program? what is the EBS module name? Custom module right? Any issues recorded for the other concurrent programs of this custom module?