DBA Data[Home] [Help]

APPS.FND_CONCURRENT dependencies on FND_EXECUTABLES

Line 1240: -- Runs the pl/sql shutdown procedures stored in FND_EXECUTABLES

1236:
1237: -- Name
1238: -- FND_CONCURRENT.SHUT_DOWN_PROCS
1239: -- Purpose
1240: -- Runs the pl/sql shutdown procedures stored in FND_EXECUTABLES
1241: -- with EXECUTION_METHOD_CODE = 'Z'.
1242: --
1243: -- Errors encountered during execution of stored procedures are
1244: -- logged to FND_EVENTS

Line 1250: SELECT execution_file_name from fnd_executables

1246: procedure shut_down_procs is
1247: errbuf VARCHAR2(256);
1248:
1249: CURSOR c IS
1250: SELECT execution_file_name from fnd_executables
1251: where execution_method_code = 'Z';
1252: begin
1253: FOR c_rec IN c LOOP
1254: begin