stored procedures [message #96262] |
Wed, 06 October 2004 22:53 |
usha
Messages: 20 Registered: December 2000
|
Junior Member |
|
|
i hav added the executable,program ,request grp everything needed to run a stored procedure in oracle apps.It is even executing properly.But i cant see the output on the screen
|
|
|
Re: stored procedures [message #96271 is a reply to message #96262] |
Thu, 07 October 2004 23:37 |
Aleksander
Messages: 10 Registered: September 2004
|
Junior Member |
|
|
Did you use FND_FILE to put the output to the out and log files?
See Chapter 21 "PL/SQL APIs for Concurrent Processing" in the "Oracle Applications Developer's Guide".
--
Aleksander
|
|
|
|
Re: stored procedures [message #96284 is a reply to message #96278] |
Mon, 11 October 2004 04:36 |
Aleksander
Messages: 10 Registered: September 2004
|
Junior Member |
|
|
Is there any particular reason you want to use DBMS_OUTPUT?
Personally I have made a package for writing to the logs, where I can just change a global variable when I want to route the output to DBMS_OUTPUT instead so that I am still able to run the process outside of concurrent manager.
The procedure for printing in the package would be something like this:
IF g_debug
THEN
dbms_output...
ELSE
fnd_file...
END IF;
If you for some reason really want to use DBMS_OUTPUT it is possible to do this and still get the results into the output file if you call the procedure from an SQL*Plus script that you set up as a concurrent process.
--
Aleksander
|
|
|