Kiran
Answered On : May 23rd, 2007
You can either enable or disable a concurrent program.
Can't delete them.

2 Users have rated as useful.
Login to rate this answer.
fnd_request.delete_request
Login to rate this answer.
Use FND_PROGRAM.DELETE_PROGRAM

1 User has rated as useful.
Login to rate this answer.
Through the Application Front end its not possible to delete CP. But from backend we can delete it.
TO DELETE CONCURRENT PROGRAM
---------------------------------------------
begin
fnd_program.delete_program('SHORTNAME','APPLICATION');
fnd_program.delete_executable('SHORTNAME','APPLICATION');
end;

1 User has rated as useful.
Login to rate this answer.
From front end we can not delete the concurrent program. We can only enable or disable the program.
We can delete the concurrent program from back end.
fnd_program.delete_program('Short Name', 'Application');
fnd_program.delete_executable('Short Name', 'Application');
Regards,
Sunil Kaswan
Login to rate this answer.
We can delete the Concurrent Program from Back End.
begin
FND_PROGRAM.delete_executable(executable_short_name=>xxexe,application=>XXMZ Custom);
commit;
end;
begin
FND_PROGRAM.DELETE_PROGRAM(program_short_name=>XXCONC,application=>XXMZ Custom);
commit;
end;
Login to rate this answer.